diff options
| -rw-r--r-- | Makefile | 3 | ||||
| -rw-r--r-- | www/index.html.in | 1 |
2 files changed, 3 insertions, 1 deletions
@@ -7,6 +7,7 @@ BUILD = www/$(INDEX) apache/praat.conf REPODATA = repo/db repo/dists repo/pool REPOHOST = www.cefala.org USER = rlaboiss +TODAY = $(shell date) build-stamp: $(BUILD) mkdir -p $(REPODATA) @@ -25,7 +26,7 @@ install-www: build-stamp sudo service apache2 restart %: %.in - sed -e 's|@WWWHOST@|$(WWWHOST)|;s|@WWWDIR@|$(WWWDIR)|;s|@INDEX@|$(INDEX)|;s|@GPGKEY@|$(GPGKEY)|' $< > $@ + sed -e 's|@WWWHOST@|$(WWWHOST)|;s|@WWWDIR@|$(WWWDIR)|;s|@INDEX@|$(INDEX)|;s|@GPGKEY@|$(GPGKEY)|;s|@TODAY@|$(TODAY)|' $< > $@ .PHONY: clean clean: diff --git a/www/index.html.in b/www/index.html.in index d9dea48..3c4fbb1 100644 --- a/www/index.html.in +++ b/www/index.html.in @@ -115,6 +115,7 @@ pre { <hr> <p>Problems? Suggestions? Contact rafael AT debian DOT org.</p> + <p>Last updated on @TODAY@</p> </body> </html> |
