aboutsummaryrefslogtreecommitdiff
path: root/applets
diff options
context:
space:
mode:
Diffstat (limited to 'applets')
-rwxr-xr-xapplets/busybox.sh6
-rw-r--r--applets/usage.c2
2 files changed, 4 insertions, 4 deletions
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=` \
7` 7`
8test "${RAW}" != "" || exit 8test "${RAW}" != "" || exit
9cd ${2:-.} 9cd ${2:-.}
10# I added in the extra "ls" so only source files that 10# By running $RAW through "ls", we avoid listing
11# actually exist will show up in the compile list. 11# source files that don't exist.
12ls -1 $RAW 2>/dev/null | sed -e 's/\.c$/\.o/g' 12ls $RAW 2>/dev/null | tr '\n' ' '
13 13
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 @@
1#define USAGE_MESSAGES 1#define USAGE_MESSAGES
2#include <usage.h> 2#include "usage.h"