diff options
author | Stefan Siegel <siegel@linux-mandrake.com> | 2003-08-03 10:05:29 +0000 |
---|---|---|
committer | Stefan Siegel <siegel@linux-mandrake.com> | 2003-08-03 10:05:29 +0000 |
commit | c30feaf583976bb77b0cd165761a910247b5e0f7 (patch) | |
tree | 4ff9dff54de6ced4155124202e95f000bb19daa8 /lst/Makefile | |
parent | c3190a55d473d9de99c26c8cbcc46be0b2f8e8f6 (diff) | |
download | ldetect-lst-c30feaf583976bb77b0cd165761a910247b5e0f7.tar ldetect-lst-c30feaf583976bb77b0cd165761a910247b5e0f7.tar.gz ldetect-lst-c30feaf583976bb77b0cd165761a910247b5e0f7.tar.bz2 ldetect-lst-c30feaf583976bb77b0cd165761a910247b5e0f7.tar.xz ldetect-lst-c30feaf583976bb77b0cd165761a910247b5e0f7.zip |
Add creation date to the header of the generated lookup files
Diffstat (limited to 'lst/Makefile')
-rw-r--r-- | lst/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lst/Makefile b/lst/Makefile index e60c4954..87cc3b59 100644 --- a/lst/Makefile +++ b/lst/Makefile @@ -37,10 +37,11 @@ $(TABLES3): install: $(TMP_TABLES) $(TABLES3) for i in $(TABLES); do \ mkdir -p $(dir)/$$i.d ; \ - (echo "# !! The original version is available in CVS at" ; \ - echo "# export CVS_RSH=ssh" ; \ - echo "# export CVSROOT=:ext:anoncvs@cvs.mandrakesoft.com:/cooker" ; \ - echo "# cvs checkout soft/$(project) (password \`\`cvs'')" ; \ + (echo "# This file was created:" `date '+%Y-%m-%d %H:%M:%S (%z)'` ; \ + echo "# !! The latest version is available via CVS at" ; \ + echo "# export CVS_RSH=ssh" ; \ + echo "# export CVSROOT=:ext:anoncvs@cvs.mandrakesoft.com:/cooker" ; \ + echo "# cvs checkout soft/$(project) (password \`\`cvs'')" ; \ cat $$i.tmp \ ) > $(dir)/$$i.d/90default.lst; done |