aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvapier <vapier@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-02-22 23:33:39 +0000
committervapier <vapier@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-02-22 23:33:39 +0000
commit3467ce22a3b011afc2c80a4a8d27d4991cba9b21 (patch)
treee090fe2c864d258227333bfe9693039ea44b9b94
parent052ac46462beeed03a26ec97e56a368a8e1d7f25 (diff)
downloadbusybox-w32-3467ce22a3b011afc2c80a4a8d27d4991cba9b21.tar.gz
busybox-w32-3467ce22a3b011afc2c80a4a8d27d4991cba9b21.tar.bz2
busybox-w32-3467ce22a3b011afc2c80a4a8d27d4991cba9b21.zip
fix applet order
git-svn-id: svn://busybox.net/trunk/busybox@14217 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r--include/applets.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/applets.h b/include/applets.h
index e952ac44f..21c1f0364 100644
--- a/include/applets.h
+++ b/include/applets.h
@@ -375,13 +375,13 @@
375#ifdef CONFIG_LESS 375#ifdef CONFIG_LESS
376 APPLET(less, less_main, _BB_DIR_USR_BIN, _BB_SUID_NEVER) 376 APPLET(less, less_main, _BB_DIR_USR_BIN, _BB_SUID_NEVER)
377#endif 377#endif
378#ifdef CONFIG_FEATURE_INITRD
379 APPLET_NOUSAGE("linuxrc", init_main, _BB_DIR_ROOT, _BB_SUID_NEVER)
380#endif
381#ifdef CONFIG_SETARCH 378#ifdef CONFIG_SETARCH
382 APPLET_NOUSAGE("linux32", setarch_main, _BB_DIR_BIN, _BB_SUID_NEVER) 379 APPLET_NOUSAGE("linux32", setarch_main, _BB_DIR_BIN, _BB_SUID_NEVER)
383 APPLET_NOUSAGE("linux64", setarch_main, _BB_DIR_BIN, _BB_SUID_NEVER) 380 APPLET_NOUSAGE("linux64", setarch_main, _BB_DIR_BIN, _BB_SUID_NEVER)
384#endif 381#endif
382#ifdef CONFIG_FEATURE_INITRD
383 APPLET_NOUSAGE("linuxrc", init_main, _BB_DIR_ROOT, _BB_SUID_NEVER)
384#endif
385#ifdef CONFIG_LN 385#ifdef CONFIG_LN
386 APPLET(ln, ln_main, _BB_DIR_BIN, _BB_SUID_NEVER) 386 APPLET(ln, ln_main, _BB_DIR_BIN, _BB_SUID_NEVER)
387#endif 387#endif