kbuild: re-enable Makefile generation in a new O=... directory
authorGuillaume Chazarain <guichaz@yahoo.fr>
Tue, 11 Dec 2007 12:22:08 +0000 (13:22 +0100)
committerSam Ravnborg <sam@saturn.ravnborg.org>
Thu, 13 Dec 2007 18:19:20 +0000 (19:19 +0100)
The commit:
18c32dac75b187d1a4e858f3cfdf03e844129f5e "kbuild: fix
building with O=.. options"
disabled the creation of a Makefile in a new O=... directory. Restore it.

Signed-off-by: Guillaume Chazarain <guichaz@yahoo.fr>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
scripts/mkmakefile

index 9ad1bd7..e0f54b9 100644 (file)
@@ -13,7 +13,7 @@
 test ! -r $2/Makefile -o -O $2/Makefile || exit 0
 # Only overwrite automatically generated Makefiles
 # (so we do not overwrite kernel Makefile)
-if ! grep -q Automatically $2/Makefile
+if test -e $2/Makefile && ! grep -q Automatically $2/Makefile
 then
        exit 0
 fi