From: Igor Sysoev Date: Wed, 18 Apr 2007 11:09:38 +0000 (+0000) Subject: fix make dependecies: pcre-6.5+ already has pcre.h X-Git-Tag: release-0.5.18~11 X-Git-Url: http://git.kaiwu.me/postgresql/log/contrib/postgres_fdw/static/gitweb.js?a=commitdiff_plain;h=5dbc83df060fb4593a4e1f1006ed999858b26c0c;p=nginx.git fix make dependecies: pcre-6.5+ already has pcre.h --- diff --git a/auto/lib/pcre/make b/auto/lib/pcre/make index f5723c852..219b52d73 100644 --- a/auto/lib/pcre/make +++ b/auto/lib/pcre/make @@ -53,14 +53,16 @@ END *) cat << END >> $NGX_MAKEFILE -$PCRE/pcre.h: $NGX_MAKEFILE +$PCRE/pcre.h: $PCRE/Makefile + +$PCRE/Makefile: $NGX_MAKEFILE cd $PCRE \\ && if [ -f Makefile ]; then \$(MAKE) distclean; fi \\ && CC="\$(CC)" CFLAGS="$PCRE_OPT" \\ ./configure --disable-shared -$PCRE/.libs/libpcre.a: $PCRE/pcre.h +$PCRE/.libs/libpcre.a: $PCRE/Makefile cd $PCRE \\ && \$(MAKE) libpcre.la