diff options
author | HimbeerserverDE <himbeerserverde@gmail.com> | 2023-12-04 18:45:56 +0100 |
---|---|---|
committer | HimbeerserverDE <himbeerserverde@gmail.com> | 2023-12-04 18:45:56 +0100 |
commit | cf93928ab83a18bd7c82a51a040c3bfcb3fe1dd5 (patch) | |
tree | d2a86d7f53ab1bc9735358c972efc0016eeca32d | |
parent | 41c3f5deaadb3642d8b4e9a74e395a6109429e23 (diff) |
add missing \ seperators to new build script flags
-rwxr-xr-x | precompile.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/precompile.sh b/precompile.sh index 0891a94e..1209ccfb 100755 --- a/precompile.sh +++ b/precompile.sh @@ -9,7 +9,7 @@ echo "Building for x86_64" ./configure CC=musl-gcc \ --disable-shared \ --host x86_64-unknown-linux-musl \ - --enable-ipv6 + --enable-ipv6 \ --without-libnl make -j$(nproc) @@ -29,7 +29,7 @@ echo "Building for rpi" ./configure CC=aarch64-linux-musl-gcc \ --disable-shared \ --host aarch64-unknown-linux-musl \ - --enable-ipv6 + --enable-ipv6 \ --without-libnl make -j$(nproc) |