]> Cypherpunks repositories - bass.git/commitdiff
Fixed typo in install path
authorSergey Matveev <stargrave@stargrave.org>
Sat, 15 Jun 2024 17:07:00 +0000 (20:07 +0300)
committerSergey Matveev <stargrave@stargrave.org>
Sat, 15 Jun 2024 17:07:00 +0000 (20:07 +0300)
build/skel/crypto/b3sum-1.5.0.do

index f55e6294b6c2a4c735bd8acb3165fae0abb31463fb3409e6541ef629e5eb0718..d03764b499348c7c678c210f01eb559394c9dccadabba0c91f30d326290276b2 100644 (file)
@@ -12,8 +12,8 @@ $TAR xf "$DISTFILES"/$NAME.tar.gz
 "$BASS_ROOT"/bin/rm-r "$SKELBINS"/$ARCH/$NAME-$hsh
 
 cd BLAKE3-team-BLAKE3-5aa53f0/c
-mkdir -p "$SKELBINS"/$ARCH/$NAME-$hsh/bin/bin
-cc -s -fPIC -O3 -o "$SKELBINS"/$ARCH/$NAME-$hsh/bin/bin/b3sum \
+mkdir -p "$SKELBINS"/$ARCH/$NAME-$hsh/bin
+cc -s -fPIC -O3 -o "$SKELBINS"/$ARCH/$NAME-$hsh/bin/b3sum \
     example.c blake3.c blake3_dispatch.c blake3_portable.c \
     blake3_sse2_x86-64_unix.S \
     blake3_sse41_x86-64_unix.S \
@@ -24,7 +24,7 @@ cc -s -fPIC -O3 -o "$SKELBINS"/$ARCH/$NAME-$hsh/bin/bin/b3sum \
     cc -c -fPIC -O3 -msse4.1 -o blake3_sse41.o blake3_sse41.c
     cc -c -fPIC -O3 -mavx2 -o blake3_avx2.o blake3_avx2.c
     cc -c -fPIC -O3 -mavx512f -mavx512vl -o blake3_avx512.o blake3_avx512.c
-    cc -s -fPIC -static -O3 -o "$SKELBINS"/$ARCH/$NAME-$hsh/bin/bin/b3sum \
+    cc -s -fPIC -static -O3 -o "$SKELBINS"/$ARCH/$NAME-$hsh/bin/b3sum \
         example.c blake3.c blake3_dispatch.c blake3_portable.c \
         blake3_avx2.o blake3_avx512.o blake3_sse41.o blake3_sse2.o
 }