diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2015-08-12 13:06:54 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2015-08-12 13:06:54 +0000 |
commit | 2fc42cddaf853318e76613fa17500ab412ef8f19 (patch) | |
tree | 32596d6155a9da88f13585f6ddba6547512e260a /tools | |
parent | 3872e7d392217394a7c9c12dfa65ab12e49e54f4 (diff) | |
download | s6-linux-init-2fc42cddaf853318e76613fa17500ab412ef8f19.tar.xz |
xyzzy fix (fixes https://bugs.gentoo.org/show_bug.cgi?id=541092)
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/gen-deps.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/gen-deps.sh b/tools/gen-deps.sh index 4615f28..1ca66ea 100755 --- a/tools/gen-deps.sh +++ b/tools/gen-deps.sh @@ -60,8 +60,8 @@ for dir in $(ls -1 src | grep -v ^include) ; do while read dep ; do deps="$deps src/$dir/$dep" done < src/$dir/deps-lib/$file - echo "lib$file.a:$deps" - echo "lib${file}.so:$(echo "$deps" | sed 's/\.o/.lo/g')" + echo "lib$file.a.xyzzy: $deps" + echo "lib${file}.so.xyzzy: $(echo "$deps" | sed 's/\.o/.lo/g')" done for file in $(ls -1 src/$dir/deps-exe) ; do |