diff options
author | H. Peter Anvin <hpa@zytor.com> | 1998-03-29 10:47:14 +0000 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 1998-03-29 10:47:14 +0000 |
commit | 574f27aa41ef4b0f8451c7b2aedbc77002036e4a (patch) | |
tree | 72d2b7ceb6b56cd24113b69da4336e15aa5b9756 /Makefile | |
parent | 20cc2e22ea84edce9845b2e22f67fca59705294f (diff) | |
download | autofs3-574f27aa41ef4b0f8451c7b2aedbc77002036e4a.tar.gz autofs3-574f27aa41ef4b0f8451c7b2aedbc77002036e4a.tar.xz autofs3-574f27aa41ef4b0f8451c7b2aedbc77002036e4a.zip |
Put something inside the .autofs files so patches will show it
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 |