aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2021-04-20 00:00:22 +0000
committerLaurent Bercot <ska-skaware@skarnet.org>2021-04-20 00:00:22 +0000
commit1172c1e817d26d5f9bb0ec289dd9a71aadf2759c (patch)
tree6c7e5eb2ebb255c7be81d1535559fa7c4a63af4b /tools
parent3bde455795bb3273922ec7be293e3911913576c2 (diff)
downloads6-linux-init-1172c1e817d26d5f9bb0ec289dd9a71aadf2759c.tar.gz
Add portability infrastructure
Diffstat (limited to 'tools')
-rwxr-xr-xtools/gen-deps.sh5
1 files changed, 0 insertions, 5 deletions
diff --git a/tools/gen-deps.sh b/tools/gen-deps.sh
index cff90ad..d6a3c40 100755
--- a/tools/gen-deps.sh
+++ b/tools/gen-deps.sh
@@ -7,8 +7,6 @@ echo '# This file has been generated by tools/gen-deps.sh'
echo '#'
echo
-internal_libs=
-
for dir in src/include/${package} src/* ; do
for file in $(ls -1 $dir | grep -- \\.h$) ; do
{
@@ -75,8 +73,6 @@ for dir in $(ls -1 src | grep -v ^include) ; do
if grep -F "LIB_DEFS :=" package/targets.mak | grep -qF "$file" ; then
echo "lib${file}.so.xyzzy: EXTRA_LIBS :=$libs"
echo "lib${file}.so.xyzzy:$(echo "$deps" | sed 's/\.o/.lo/g')"
- else
- internal_libs="$internal_libs lib${file}.a.xyzzy"
fi
done
@@ -97,4 +93,3 @@ for dir in $(ls -1 src | grep -v ^include) ; do
echo "$file: src/$dir/$file.o$deps"
done
done
-echo "INTERNAL_LIBS :=$internal_libs"