summaryrefslogtreecommitdiff
path: root/tools/gen-deps.sh
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2015-08-12 13:07:06 +0000
committerLaurent Bercot <ska-skaware@skarnet.org>2015-08-12 13:07:06 +0000
commitcdb3e48c94eaf206438bd69a269eda360b92b2fc (patch)
tree65db23571742a42f464051f66c7813d28b6a2e8c /tools/gen-deps.sh
parent8d7e51feec8038012528f208065211c1c3f44dc9 (diff)
downloads6-portable-utils-cdb3e48c94eaf206438bd69a269eda360b92b2fc.tar.xz
xyzzy fix (fixes https://bugs.gentoo.org/show_bug.cgi?id=541092)
Diffstat (limited to 'tools/gen-deps.sh')
-rwxr-xr-xtools/gen-deps.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/gen-deps.sh b/tools/gen-deps.sh
index 2f7c57d..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