From 19f86207f5c9cdcd192295e3ac3130a40f180d39 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Sat, 17 Feb 2001 00:42:47 +0000 Subject: Update the build system for pristine source directory builds. This update is primarily work done by Larry Doolittle, but I did some touchups of my own to make it work for me, -Erik --- applets/busybox.sh | 6 +++--- applets/usage.c | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'applets') diff --git a/applets/busybox.sh b/applets/busybox.sh index 547aca477..338298086 100755 --- a/applets/busybox.sh +++ b/applets/busybox.sh @@ -7,7 +7,7 @@ RAW=` \ ` test "${RAW}" != "" || exit cd ${2:-.} -# I added in the extra "ls" so only source files that -# actually exist will show up in the compile list. -ls -1 $RAW 2>/dev/null | sed -e 's/\.c$/\.o/g' +# By running $RAW through "ls", we avoid listing +# source files that don't exist. +ls $RAW 2>/dev/null | tr '\n' ' ' diff --git a/applets/usage.c b/applets/usage.c index 1515c0898..e429c5a4e 100644 --- a/applets/usage.c +++ b/applets/usage.c @@ -1,2 +1,2 @@ #define USAGE_MESSAGES -#include +#include "usage.h" -- cgit v1.2.3