diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2017-10-30 11:09:16 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2017-10-30 11:09:16 +0000 |
commit | 7dedbced950fa6d9c1a7fe88a584f6732ac0b9d6 (patch) | |
tree | 194892138a815b7c0c81d44bcd539b583172d93e /tools/gen-deps.sh | |
parent | 9b859960944cf49fa9a4e74f10895c3663bbbac0 (diff) | |
download | s6-7dedbced950fa6d9c1a7fe88a584f6732ac0b9d6.tar.xz |
Make all-pic a user option
Diffstat (limited to 'tools/gen-deps.sh')
-rwxr-xr-x | tools/gen-deps.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/gen-deps.sh b/tools/gen-deps.sh index 67ec2d4..6383ac2 100755 --- a/tools/gen-deps.sh +++ b/tools/gen-deps.sh @@ -65,7 +65,7 @@ for dir in $(ls -1 src | grep -v ^include) ; do deps="$deps src/$dir/$dep" fi done < src/$dir/deps-lib/$file - echo 'ifeq ($(strip $(DEFAULT_PIE)),)' + echo 'ifeq ($(strip $(STATIC_LIBS_ARE_PIC)),)' echo "lib${file}.a.xyzzy:$deps" echo else echo "lib${file}.a.xyzzy:$(echo "$deps" | sed 's/\.o/.lo/g')" |