diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-01-26 20:31:02 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-01-26 20:31:02 +0000 |
commit | a68b21a28e62a86afdbbc57b5a4694a17d7dfd1e (patch) | |
tree | a6eb548d4407276e38f9e7badd4b50d3a5040eed | |
parent | 6e25f926363876f79b7493062facffa2a1f175b7 (diff) | |
download | busybox-w32-a68b21a28e62a86afdbbc57b5a4694a17d7dfd1e.tar.gz busybox-w32-a68b21a28e62a86afdbbc57b5a4694a17d7dfd1e.tar.bz2 busybox-w32-a68b21a28e62a86afdbbc57b5a4694a17d7dfd1e.zip |
Cleanup patch from larry doolittle
-Erik
-rwxr-xr-x | applets/busybox.mkll | 9 | ||||
-rwxr-xr-x | busybox.mkll | 9 |
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 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | # Make busybox links list file. | 2 | # Make busybox links list file. |
3 | 3 | ||
4 | # input $1: full path to Config.h | ||
5 | # input $2: full path to applets.h | ||
6 | # output (stdout): list of pathnames that should be linked to busybox | ||
7 | |||
8 | # Maintainer: Larry Doolittle <ldoolitt@recycle.lbl.gov> | ||
9 | |||
4 | CONFIG_H=${1:-Config.h} | 10 | CONFIG_H=${1:-Config.h} |
5 | APPLETS_H=${2:-applets.h} | 11 | APPLETS_H=${2:-applets.h} |
6 | gcc -E -DMAKE_LINKS -include $CONFIG_H $APPLETS_H | | 12 | gcc -E -DMAKE_LINKS -include $CONFIG_H $APPLETS_H | |
7 | awk '/^[ \t]*LINK/{ | 13 | awk '/^[ \t]*LINK/{ |
8 | match($2,"_BB_DIR[A-Z_]*") | 14 | dir=substr($2,8) |
9 | dir=substr($2,RSTART+7,RLENGTH-7) | ||
10 | gsub("_","/",dir) | 15 | gsub("_","/",dir) |
11 | if(dir=="/ROOT") dir="" | 16 | if(dir=="/ROOT") dir="" |
12 | file=$3 | 17 | file=$3 |
diff --git a/busybox.mkll b/busybox.mkll index 12fa06f40..81b329ad8 100755 --- a/busybox.mkll +++ b/busybox.mkll | |||
@@ -1,12 +1,17 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | # Make busybox links list file. | 2 | # Make busybox links list file. |
3 | 3 | ||
4 | # input $1: full path to Config.h | ||
5 | # input $2: full path to applets.h | ||
6 | # output (stdout): list of pathnames that should be linked to busybox | ||
7 | |||
8 | # Maintainer: Larry Doolittle <ldoolitt@recycle.lbl.gov> | ||
9 | |||
4 | CONFIG_H=${1:-Config.h} | 10 | CONFIG_H=${1:-Config.h} |
5 | APPLETS_H=${2:-applets.h} | 11 | APPLETS_H=${2:-applets.h} |
6 | gcc -E -DMAKE_LINKS -include $CONFIG_H $APPLETS_H | | 12 | gcc -E -DMAKE_LINKS -include $CONFIG_H $APPLETS_H | |
7 | awk '/^[ \t]*LINK/{ | 13 | awk '/^[ \t]*LINK/{ |
8 | match($2,"_BB_DIR[A-Z_]*") | 14 | dir=substr($2,8) |
9 | dir=substr($2,RSTART+7,RLENGTH-7) | ||
10 | gsub("_","/",dir) | 15 | gsub("_","/",dir) |
11 | if(dir=="/ROOT") dir="" | 16 | if(dir=="/ROOT") dir="" |
12 | file=$3 | 17 | file=$3 |