changeset 821:9ac9b7c260e9

[project @ 1994-10-15 13:44:05 by jwe]
author jwe
date Sat, 15 Oct 1994 13:45:23 +0000
parents c1af36e4ed06
children fefddd86271e
files octMakefile.in
diffstat 1 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/octMakefile.in	Sat Oct 15 13:35:04 1994 +0000
+++ b/octMakefile.in	Sat Oct 15 13:45:23 1994 +0000
@@ -283,11 +283,12 @@
 .PHONY: snapshot
 
 snapshot-version:
-	gawk '/static[ \t]+char[ \t]+version_string\[\] [ \t]*=/ { \
+	@echo "creating src/version.h"
+	@gawk '/static[ \t]+char[ \t]+version_string\[\] [ \t]*=/ { \
 	  datestring = strftime("%y%m%d", systime()); \
 	  printf("static char version_string[] = \"ss-%s\";\n", \
 		 datestring); \
 	  next; \
 	} { print $$0 }' src/version.h > src/version.h.new
-	@(top_srcdir)/move-if-change src/version.h.new src/version.h
+	@$(top_srcdir)/move-if-change src/version.h.new src/version.h
 .PHONY: snapshot-version