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-w32-a68b21a28e62a86afdbbc57b5a4694a17d7dfd1e.tar.gz
busybox-w32-a68b21a28e62a86afdbbc57b5a4694a17d7dfd1e.tar.bz2
busybox-w32-a68b21a28e62a86afdbbc57b5a4694a17d7dfd1e.zip
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 @@
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
4CONFIG_H=${1:-Config.h} 10CONFIG_H=${1:-Config.h}
5APPLETS_H=${2:-applets.h} 11APPLETS_H=${2:-applets.h}
6gcc -E -DMAKE_LINKS -include $CONFIG_H $APPLETS_H | 12gcc -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
4CONFIG_H=${1:-Config.h} 10CONFIG_H=${1:-Config.h}
5APPLETS_H=${2:-applets.h} 11APPLETS_H=${2:-applets.h}
6gcc -E -DMAKE_LINKS -include $CONFIG_H $APPLETS_H | 12gcc -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