svn commit: trunk/busybox: scripts
vda at busybox.net
vda at busybox.net
Sun Mar 18 21:45:22 UTC 2007
Author: vda
Date: 2007-03-18 14:45:21 -0700 (Sun, 18 Mar 2007)
New Revision: 18153
Log:
make clean deletes .kernelrelease now
trylink deleted empty linker stderr on success
Modified:
trunk/busybox/Makefile
trunk/busybox/scripts/trylink
Changeset:
Modified: trunk/busybox/Makefile
===================================================================
--- trunk/busybox/Makefile 2007-03-18 21:44:00 UTC (rev 18152)
+++ trunk/busybox/Makefile 2007-03-18 21:45:21 UTC (rev 18153)
@@ -906,7 +906,7 @@
# Directories & files removed with 'make clean'
CLEAN_DIRS += $(MODVERDIR)
-CLEAN_FILES += busybox* System.map \
+CLEAN_FILES += busybox* System.map .kernelrelease \
.tmp_kallsyms* .tmp_version .tmp_busybox* .tmp_System.map
# Directories & files removed with 'make mrproper'
Modified: trunk/busybox/scripts/trylink
===================================================================
--- trunk/busybox/scripts/trylink 2007-03-18 21:44:00 UTC (rev 18152)
+++ trunk/busybox/scripts/trylink 2007-03-18 21:45:21 UTC (rev 18153)
@@ -7,7 +7,7 @@
shift
$debug && echo "Trying: $* $added"
"$@" $added >busybox.map 2>busybox_ld.err \
- && exit 0
+ && { rm busybox_ld.err; exit 0; }
}
try "" "$@"
More information about the busybox-cvs
mailing list