diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2024-06-21 12:11:08 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2024-06-21 12:51:37 -0400 |
commit | 4bc79148e2ed23273afefaf439a03364d5161046 (patch) | |
tree | 4e996b7e46e56e28bb6d137db49b8fae139189eb /build/pkgconf.sh | |
parent | 4bc06bd999786da359a05801bf9106597fe57298 (diff) | |
download | bfs-4bc79148e2ed23273afefaf439a03364d5161046.tar.xz |
build: Save cc.sh build products to gen/
Diffstat (limited to 'build/pkgconf.sh')
-rwxr-xr-x | build/pkgconf.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/pkgconf.sh b/build/pkgconf.sh index 244c95d..a8a3341 100755 --- a/build/pkgconf.sh +++ b/build/pkgconf.sh @@ -37,7 +37,7 @@ if [ -z "$MODE" ]; then CFLAGS=$("$0" --cflags "$LIB") || exit 1 LDFLAGS=$("$0" --ldflags "$LIB") || exit 1 LDLIBS=$("$0" --ldlibs "$LIB") || exit 1 - build/cc.sh $CFLAGS $LDFLAGS build/with/$LIB.c $LDLIBS || exit 1 + build/cc.sh $CFLAGS $LDFLAGS "build/with/$LIB.c" $LDLIBS -o "gen/with/.$LIB.out" || exit 1 done fi |