Return-Path: Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 56351 invoked by uid 500); 3 Dec 2002 09:47:13 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 56340 invoked by uid 500); 3 Dec 2002 09:47:12 -0000 Delivered-To: apmail-httpd-2.0-cvs@apache.org Date: 3 Dec 2002 09:47:11 -0000 Message-ID: <20021203094711.97070.qmail@icarus.apache.org> From: martin@apache.org To: httpd-2.0-cvs@apache.org Subject: cvs commit: httpd-2.0/server Makefile.in X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N martin 2002/12/03 01:47:11 Modified: server Makefile.in Log: FreeBSD's make doesn't like the 'implied source' syntax ($<) -- using $? which works. Revision Changes Path 1.79 +4 -4 httpd-2.0/server/Makefile.in Index: Makefile.in =================================================================== RCS file: /home/cvs/httpd-2.0/server/Makefile.in,v retrieving revision 1.78 retrieving revision 1.79 diff -u -r1.78 -r1.79 --- Makefile.in 2 Dec 2002 13:36:49 -0000 1.78 +++ Makefile.in 3 Dec 2002 09:47:11 -0000 1.79 @@ -34,7 +34,7 @@ delete-exports: export_files @if test -f exports.c; then \ - files=`cat $<`; \ + files=`cat $?`; \ headers="`find $$files -newer exports.c`"; \ if test -n "$$headers"; then \ echo Found newer headers. Will rebuild exports.c.; \ @@ -49,15 +49,15 @@ for dir in $(EXPORT_DIRS); do \ find $$dir -maxdepth 1 -type f -name '*.h' >> $$tmp; \ done; \ - cat $$tmp | sort | uniq > $@; \ + sort -u $$tmp > $@; \ rm -f $$tmp # full path required to keep BSD make happy $(top_builddir)/server/exports.c: export_files - $(AWK) -f $(top_srcdir)/build/make_exports.awk `cat $<` > $@ + $(AWK) -f $(top_srcdir)/build/make_exports.awk `cat $?` > $@ export_vars.h: export_files - $(AWK) -f $(top_srcdir)/build/make_var_export.awk `cat $<` > $@ + $(AWK) -f $(top_srcdir)/build/make_var_export.awk `cat $?` > $@ # wtf does this have to be explicit???? exports.lo: exports.c