aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-01-26 20:31:02 +0000
committerEric Andersen <andersen@codepoet.org>2001-01-26 20:31:02 +0000
commita68b21a28e62a86afdbbc57b5a4694a17d7dfd1e (patch)
treea6eb548d4407276e38f9e7badd4b50d3a5040eed
parent6e25f926363876f79b7493062facffa2a1f175b7 (diff)
downloadbusybox-a68b21a28e62a86afdbbc57b5a4694a17d7dfd1e.tar.gz
Cleanup patch from larry doolittle
-Erik
-rwxr-xr-xapplets/busybox.mkll9
-rwxr-xr-xbusybox.mkll9
2 files changed, 14 insertions, 4 deletions
diff --git a/applets/busybox.mkll b/applets/busybox.mkll
index 12fa06f40..81b329ad8 100755
--- a/applets/busybox.mkll
+++ b/applets/busybox.mkll
@@ -1,12 +1,17 @@
#!/bin/sh
# Make busybox links list file.
+# input $1: full path to Config.h
+# input $2: full path to applets.h
+# output (stdout): list of pathnames that should be linked to busybox
+
+# Maintainer: Larry Doolittle <ldoolitt@recycle.lbl.gov>
+
CONFIG_H=${1:-Config.h}
APPLETS_H=${2:-applets.h}
gcc -E -DMAKE_LINKS -include $CONFIG_H $APPLETS_H |
awk '/^[ \t]*LINK/{
- match($2,"_BB_DIR[A-Z_]*")
- dir=substr($2,RSTART+7,RLENGTH-7)
+ dir=substr($2,8)
gsub("_","/",dir)
if(dir=="/ROOT") dir=""
file=$3
diff --git a/busybox.mkll b/busybox.mkll
index 12fa06f40..81b329ad8 100755
--- a/busybox.mkll
+++ b/busybox.mkll
@@ -1,12 +1,17 @@
#!/bin/sh
# Make busybox links list file.
+# input $1: full path to Config.h
+# input $2: full path to applets.h
+# output (stdout): list of pathnames that should be linked to busybox
+
+# Maintainer: Larry Doolittle <ldoolitt@recycle.lbl.gov>
+
CONFIG_H=${1:-Config.h}
APPLETS_H=${2:-applets.h}
gcc -E -DMAKE_LINKS -include $CONFIG_H $APPLETS_H |
awk '/^[ \t]*LINK/{
- match($2,"_BB_DIR[A-Z_]*")
- dir=substr($2,RSTART+7,RLENGTH-7)
+ dir=substr($2,8)
gsub("_","/",dir)
if(dir=="/ROOT") dir=""
file=$3