diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-07-04 08:26:55 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-07-04 08:26:55 +0000 |
commit | 273430aa8d3ca6946bf12267320375dcb4945256 (patch) | |
tree | 61a0837a99fb16a88089507596d786f60ea43c08 /Makefile | |
parent | c773ac8a79b3be93b5ab3930e3896235e7a1578b (diff) | |
download | busybox-w32-273430aa8d3ca6946bf12267320375dcb4945256.tar.gz busybox-w32-273430aa8d3ca6946bf12267320375dcb4945256.tar.bz2 busybox-w32-273430aa8d3ca6946bf12267320375dcb4945256.zip |
- Pull r15593:
Rename to CROSS_COMPILE and move its configuration to .config.mak. (Shaun Jackman)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -216,8 +216,6 @@ randconfig: scripts/config/conf | |||
216 | 216 | ||
217 | allyesconfig: scripts/config/conf | 217 | allyesconfig: scripts/config/conf |
218 | @./scripts/config/conf -y $(CONFIG_CONFIG_IN) > /dev/null | 218 | @./scripts/config/conf -y $(CONFIG_CONFIG_IN) > /dev/null |
219 | @$(SED) -i -r -e "s/^(USING_CROSS_COMPILER)=.*/# \1 is not set/" .config | ||
220 | @./scripts/config/conf -o $(CONFIG_CONFIG_IN) > /dev/null | ||
221 | 219 | ||
222 | allnoconfig: scripts/config/conf | 220 | allnoconfig: scripts/config/conf |
223 | @./scripts/config/conf -n $(CONFIG_CONFIG_IN) > /dev/null | 221 | @./scripts/config/conf -n $(CONFIG_CONFIG_IN) > /dev/null |
@@ -228,13 +226,13 @@ allnoconfig: scripts/config/conf | |||
228 | 226 | ||
229 | defconfig: scripts/config/conf | 227 | defconfig: scripts/config/conf |
230 | @./scripts/config/conf -y $(CONFIG_CONFIG_IN) > /dev/null | 228 | @./scripts/config/conf -y $(CONFIG_CONFIG_IN) > /dev/null |
231 | @$(SED) -i -r -e "s/^(USING_CROSS_COMPILER|CONFIG_(DEBUG.*|STATIC|SELINUX|BUILD_(AT_ONCE|LIBBUSYBOX)|FEATURE_(DEVFS|FULL_LIBBUSYBOX|SHARED_BUSYBOX|MTAB_SUPPORT|CLEAN_UP|UDHCP_DEBUG)|INSTALL_NO_USR))=.*/# \1 is not set/" .config | 229 | @$(SED) -i -r -e "s/^(CONFIG_(DEBUG.*|STATIC|SELINUX|BUILD_(AT_ONCE|LIBBUSYBOX)|FEATURE_(DEVFS|FULL_LIBBUSYBOX|SHARED_BUSYBOX|MTAB_SUPPORT|CLEAN_UP|UDHCP_DEBUG)|INSTALL_NO_USR))=.*/# \1 is not set/" .config |
232 | @./scripts/config/conf -o $(CONFIG_CONFIG_IN) > /dev/null | 230 | @./scripts/config/conf -o $(CONFIG_CONFIG_IN) > /dev/null |
233 | 231 | ||
234 | 232 | ||
235 | allbareconfig: scripts/config/conf | 233 | allbareconfig: scripts/config/conf |
236 | @./scripts/config/conf -y $(CONFIG_CONFIG_IN) > /dev/null | 234 | @./scripts/config/conf -y $(CONFIG_CONFIG_IN) > /dev/null |
237 | @$(SED) -i -r -e "s/^(USING_CROSS_COMPILER|CONFIG_(DEBUG|STATIC|SELINUX|DEVFSD|NC_GAPING_SECURITY_HOLE|BUILD_AT_ONCE)).*/# \1 is not set/" .config | 235 | @$(SED) -i -r -e "s/^(CONFIG_(DEBUG|STATIC|SELINUX|DEVFSD|NC_GAPING_SECURITY_HOLE|BUILD_AT_ONCE)).*/# \1 is not set/" .config |
238 | @$(SED) -i -e "/FEATURE/s/=.*//;/^[^#]/s/.*FEATURE.*/# \0 is not set/;" .config | 236 | @$(SED) -i -e "/FEATURE/s/=.*//;/^[^#]/s/.*FEATURE.*/# \0 is not set/;" .config |
239 | @echo "CONFIG_FEATURE_BUFFERS_GO_ON_STACK=y" >> .config | 237 | @echo "CONFIG_FEATURE_BUFFERS_GO_ON_STACK=y" >> .config |
240 | @yes n | ./scripts/config/conf -o $(CONFIG_CONFIG_IN) > /dev/null | 238 | @yes n | ./scripts/config/conf -o $(CONFIG_CONFIG_IN) > /dev/null |