aboutsummaryrefslogtreecommitdiff
path: root/applets.h
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 /applets.h
parent8079b155c23c8062fe65e00f590726a780ec0bdc (diff)
downloadbusybox-3574b70efc904f4c0ae8fb7a8dc653887a73de3c.tar.gz
Somewhere along the line, MAKE_LINKS got broken, thereby breaking
'make install'. Fix that.
Diffstat (limited to 'applets.h')
-rw-r--r--applets.h4
1 files changed, 4 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 @@
#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},