You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by Jim Jagielski <ji...@hyperreal.org> on 1997/09/03 15:20:45 UTC

cvs commit: apachen/src Makefile.tmpl

jim         97/09/03 06:20:44

  Modified:    src      Makefile.tmpl
  Log:
  Let's not assume that 'date' lives in /bin
  
  Revision  Changes    Path
  1.62      +1 -1      apachen/src/Makefile.tmpl
  
  Index: Makefile.tmpl
  ===================================================================
  RCS file: /export/home/cvs/apachen/src/Makefile.tmpl,v
  retrieving revision 1.61
  retrieving revision 1.62
  diff -u -r1.61 -r1.62
  --- Makefile.tmpl	1997/09/03 08:30:04	1.61
  +++ Makefile.tmpl	1997/09/03 13:20:43	1.62
  @@ -30,7 +30,7 @@
   
   httpd: $(REGLIB) modules.o subdirs
   	rm -f buildmark.c
  -	echo 'const char SERVER_BUILT[] = "'`/bin/date`'";' > buildmark.c
  +	echo 'const char SERVER_BUILT[] = "'`date`'";' > buildmark.c
   	$(CC) -c $(CFLAGS) buildmark.c
   	$(CC) $(LDFLAGS)  -o httpd buildmark.o $(OBJS) $(REGLIB) $(LIBS)