summary refs log tree commit diff
path: root/tools/gen-deps.sh
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2015-08-12 13:06:57 +0000
committerLaurent Bercot <ska-skaware@skarnet.org>2015-08-12 13:06:57 +0000
commitc33f8ef19fdb814169fb27c3ebac902d078c200c (patch)
tree9a63f13c3a3366c8d31cd4262a7abdfe27d6df87 /tools/gen-deps.sh
parentf9c1bf26d0d56d249b37d9c7d938abb570d1c31e (diff)
downloads6-linux-utils-c33f8ef19fdb814169fb27c3ebac902d078c200c.tar.gz
s6-linux-utils-c33f8ef19fdb814169fb27c3ebac902d078c200c.tar.xz
s6-linux-utils-c33f8ef19fdb814169fb27c3ebac902d078c200c.zip
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