aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-02-23 02:16:29 +0000
committerEric Andersen <andersen@codepoet.org>2001-02-23 02:16:29 +0000
commit3574b70efc904f4c0ae8fb7a8dc653887a73de3c (patch)
tree10fd49ad7968094f2d2db563e3667c635843a9c1
parent8079b155c23c8062fe65e00f590726a780ec0bdc (diff)
downloadbusybox-w32-3574b70efc904f4c0ae8fb7a8dc653887a73de3c.tar.gz
busybox-w32-3574b70efc904f4c0ae8fb7a8dc653887a73de3c.tar.bz2
busybox-w32-3574b70efc904f4c0ae8fb7a8dc653887a73de3c.zip
Somewhere along the line, MAKE_LINKS got broken, thereby breaking
'make install'. Fix that.
-rw-r--r--applets.h4
-rw-r--r--include/applets.h4
2 files changed, 8 insertions, 0 deletions
diff --git a/applets.h b/applets.h
index eaa818df7..dbb234963 100644
--- a/applets.h
+++ b/applets.h
@@ -30,6 +30,10 @@
30 #define APPLET_NOUSAGE(a,b,c) "\0" 30 #define APPLET_NOUSAGE(a,b,c) "\0"
31 #define APPLET_ODDNAME(a,b,c,d) d##_trivial_usage "\n\n" d##_full_usage "\0" 31 #define APPLET_ODDNAME(a,b,c,d) d##_trivial_usage "\n\n" d##_full_usage "\0"
32 #endif 32 #endif
33#elif defined(MAKE_LINKS)
34# define APPLET(a,b,c) LINK c a
35# define APPLET_NOUSAGE(a,b,c) LINK c a
36# define APPLET_ODDNAME(a,b,c,d) LINK c a
33#else 37#else
34 const struct BB_applet applets[] = { 38 const struct BB_applet applets[] = {
35 #define APPLET(a,b,c) {#a,b,c}, 39 #define APPLET(a,b,c) {#a,b,c},
diff --git a/include/applets.h b/include/applets.h
index eaa818df7..dbb234963 100644
--- a/include/applets.h
+++ b/include/applets.h
@@ -30,6 +30,10 @@
30 #define APPLET_NOUSAGE(a,b,c) "\0" 30 #define APPLET_NOUSAGE(a,b,c) "\0"
31 #define APPLET_ODDNAME(a,b,c,d) d##_trivial_usage "\n\n" d##_full_usage "\0" 31 #define APPLET_ODDNAME(a,b,c,d) d##_trivial_usage "\n\n" d##_full_usage "\0"
32 #endif 32 #endif
33#elif defined(MAKE_LINKS)
34# define APPLET(a,b,c) LINK c a
35# define APPLET_NOUSAGE(a,b,c) LINK c a
36# define APPLET_ODDNAME(a,b,c,d) LINK c a
33#else 37#else
34 const struct BB_applet applets[] = { 38 const struct BB_applet applets[] = {
35 #define APPLET(a,b,c) {#a,b,c}, 39 #define APPLET(a,b,c) {#a,b,c},