diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-02-23 02:16:29 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-02-23 02:16:29 +0000 |
commit | cb2136e9278e0b44e1f8fd3ba9bd32a781b9d95a (patch) | |
tree | 10fd49ad7968094f2d2db563e3667c635843a9c1 | |
parent | e03856ba1d4dad64af4231b3e38961179bb9d79f (diff) | |
download | busybox-w32-cb2136e9278e0b44e1f8fd3ba9bd32a781b9d95a.tar.gz busybox-w32-cb2136e9278e0b44e1f8fd3ba9bd32a781b9d95a.tar.bz2 busybox-w32-cb2136e9278e0b44e1f8fd3ba9bd32a781b9d95a.zip |
Somewhere along the line, MAKE_LINKS got broken, thereby breaking
'make install'. Fix that.
git-svn-id: svn://busybox.net/trunk/busybox@1899 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r-- | applets.h | 4 | ||||
-rw-r--r-- | include/applets.h | 4 |
2 files changed, 8 insertions, 0 deletions
@@ -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}, |