ben 96/06/14 09:24:28
Modified: src Makefile.tmpl
Log:
Submitted by: Heiko Schlittermann <[EMAIL PROTECTED]>
Reviewed by: Ben Laurie
Yes, there is a better way to generate an error than 'expr ""'. Doh!
Revision Changes Path
1.14 +1 -3 apache/src/Makefile.tmpl
Index: Makefile.tmpl
===================================================================
RCS file: /export/home/cvs/apache/src/Makefile.tmpl,v
retrieving revision 1.13
retrieving revision 1.14
diff -C3 -r1.13 -r1.14
*** Makefile.tmpl 1996/06/11 20:44:22 1.13
--- Makefile.tmpl 1996/06/14 16:24:26 1.14
***************
*** 17,25 ****
@echo "Consider copying Configuration.tmpl to Configuration, editing
and rerunning"
@echo "Configure."
@echo "If not, you will at least have to touch Configuration."
! # Use expr "" to generate an error code (exit doesn't work). Nasty. If
anyone
! # knows a better way, let me know ([EMAIL PROTECTED]).
! @expr ""
httpd: $(OBJS)
$(CC) $(LFLAGS) $(AUX_LFLAGS) -o httpd $(OBJS) $(EXTRA_LIBS) $(AUX_LIBS)
--- 17,23 ----
@echo "Consider copying Configuration.tmpl to Configuration, editing
and rerunning"
@echo "Configure."
@echo "If not, you will at least have to touch Configuration."
! @false
httpd: $(OBJS)
$(CC) $(LFLAGS) $(AUX_LFLAGS) -o httpd $(OBJS) $(EXTRA_LIBS) $(AUX_LIBS)