diff options
author | Eric Andersen | 2001-02-23 02:16:29 +0000 |
---|---|---|
committer | Eric Andersen | 2001-02-23 02:16:29 +0000 |
commit | 3574b70efc904f4c0ae8fb7a8dc653887a73de3c (patch) | |
tree | 10fd49ad7968094f2d2db563e3667c635843a9c1 | |
parent | 8079b155c23c8062fe65e00f590726a780ec0bdc (diff) | |
download | busybox-3574b70efc904f4c0ae8fb7a8dc653887a73de3c.zip busybox-3574b70efc904f4c0ae8fb7a8dc653887a73de3c.tar.gz |
Somewhere along the line, MAKE_LINKS got broken, thereby breaking
'make install'. Fix that.
-rw-r--r-- | applets.h | 4 | ||||
-rw-r--r-- | include/applets.h | 4 |
2 files changed, 8 insertions, 0 deletions
@@ -30,6 +30,10 @@ #define APPLET_NOUSAGE(a,b,c) "\0" #define APPLET_ODDNAME(a,b,c,d) d##_trivial_usage "\n\n" d##_full_usage "\0" #endif +#elif defined(MAKE_LINKS) +# define APPLET(a,b,c) LINK c a +# define APPLET_NOUSAGE(a,b,c) LINK c a +# define APPLET_ODDNAME(a,b,c,d) LINK c a #else const struct BB_applet applets[] = { #define APPLET(a,b,c) {#a,b,c}, diff --git a/include/applets.h b/include/applets.h index eaa818d..dbb2349 100644 --- a/include/applets.h +++ b/include/applets.h @@ -30,6 +30,10 @@ #define APPLET_NOUSAGE(a,b,c) "\0" #define APPLET_ODDNAME(a,b,c,d) d##_trivial_usage "\n\n" d##_full_usage "\0" #endif +#elif defined(MAKE_LINKS) +# define APPLET(a,b,c) LINK c a +# define APPLET_NOUSAGE(a,b,c) LINK c a +# define APPLET_ODDNAME(a,b,c,d) LINK c a #else const struct BB_applet applets[] = { #define APPLET(a,b,c) {#a,b,c}, |