diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -30,7 +30,7 @@ install_kernel: mrproper distclean: clean find . -noleaf \( -name '*~' -o -name '#*' -o -name '*.orig' -o -name '*.rej' -o -name '*.old' \) -print0 | xargs -0 rm -f -rm -f include/config.h Makefile.conf config.* .autofs-* - touch .autofs-`cat .version` + echo x > .autofs-`cat .version` TODAY := $(shell date +'%Y%m%d') @@ -43,7 +43,7 @@ configure: configure.in aclocal.m4 configure.in: .version -rm -f .autofs-* - touch .autofs-`cat .version` + echo x > .autofs-`cat .version` sed -e "s/(\.autofs-[0-9.]\+)/(.autofs-`cat .version`)/" < configure.in > configure.in.tmp mv -f configure.in.tmp configure.in |