aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-10-25 02:19:55 +0000
committerlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-10-25 02:19:55 +0000
commit85730af2d6230680c48f5f686405ed26e651de3c (patch)
tree5d26743e91f770a379776560853904406154f79d
parent3f8739f91108c973c313a61e223c6bbf008da1aa (diff)
downloadbusybox-w32-85730af2d6230680c48f5f686405ed26e651de3c.tar.gz
busybox-w32-85730af2d6230680c48f5f686405ed26e651de3c.tar.bz2
busybox-w32-85730af2d6230680c48f5f686405ed26e651de3c.zip
Two changes. One from Shaun Jackman makes libbb/interface.c compile only if
it's going to be used. (I'm guessing it doesn't work with newlib.) The other one is from me: allyesconfig shouldn't enable devfs because that changes all sorts of unrelated stuff (like /dev/loop0->dev/loop/0), which can come as a bit of a surprise. (It's still there, but you have to go into menuconfig and select it manually.) git-svn-id: svn://busybox.net/trunk/busybox@11912 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 9c3ed40a8..f603d2d1a 100644
--- a/Makefile
+++ b/Makefile
@@ -185,7 +185,7 @@ randconfig: scripts/config/conf
185 185
186allyesconfig: scripts/config/conf 186allyesconfig: scripts/config/conf
187 @./scripts/config/conf -y $(CONFIG_CONFIG_IN) 187 @./scripts/config/conf -y $(CONFIG_CONFIG_IN)
188 sed -i -r -e "s/^(CONFIG_DEBUG|USING_CROSS_COMPILER|CONFIG_STATIC|CONFIG_SELINUX).*/# \1 is not set/" .config 188 sed -i -r -e "s/^(CONFIG_DEBUG|USING_CROSS_COMPILER|CONFIG_STATIC|CONFIG_SELINUX|CONFIG_FEATURE_DEVFS).*/# \1 is not set/" .config
189 @./scripts/config/conf -o $(CONFIG_CONFIG_IN) 189 @./scripts/config/conf -o $(CONFIG_CONFIG_IN)
190 190
191allnoconfig: scripts/config/conf 191allnoconfig: scripts/config/conf