aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2006-02-22 23:33:39 +0000
committerMike Frysinger <vapier@gentoo.org>2006-02-22 23:33:39 +0000
commit73b4710974cce4a5ae775fb18c22eacf028f5725 (patch)
treee090fe2c864d258227333bfe9693039ea44b9b94
parent992a58c216b5426c82738f8590300807b38042b4 (diff)
downloadbusybox-w32-73b4710974cce4a5ae775fb18c22eacf028f5725.tar.gz
busybox-w32-73b4710974cce4a5ae775fb18c22eacf028f5725.tar.bz2
busybox-w32-73b4710974cce4a5ae775fb18c22eacf028f5725.zip
fix applet order
-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