aboutsummaryrefslogtreecommitdiff
path: root/applets
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-01-26 20:31:02 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-01-26 20:31:02 +0000
commite0901c83c23e8cb6c86f7d1b1696c3c3e922012e (patch)
treea6eb548d4407276e38f9e7badd4b50d3a5040eed /applets
parenta2cf590f865a1878038025e03b799de46bebf8c6 (diff)
downloadbusybox-w32-e0901c83c23e8cb6c86f7d1b1696c3c3e922012e.tar.gz
busybox-w32-e0901c83c23e8cb6c86f7d1b1696c3c3e922012e.tar.bz2
busybox-w32-e0901c83c23e8cb6c86f7d1b1696c3c3e922012e.zip
Cleanup patch from larry doolittle
-Erik git-svn-id: svn://busybox.net/trunk/busybox@1686 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'applets')
-rwxr-xr-xapplets/busybox.mkll9
1 files changed, 7 insertions, 2 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