diff options
-rwxr-xr-x | core/b3sum/build | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/core/b3sum/build b/core/b3sum/build index fb79f372..c3c7e145 100755 --- a/core/b3sum/build +++ b/core/b3sum/build @@ -1,4 +1,7 @@ #!/bin/sh -e -make LDFLAGS="$LDFLAGS -static" +WITH_ASM=1 +case $3 in i*86) WITH_ASM=0; esac + +make LDFLAGS="$LDFLAGS -static" WITH_ASM="$WITH_ASM" make PREFIX=/usr DESTDIR="$1" install |