aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2007-04-18 11:09:38 +0000
committerIgor Sysoev <igor@sysoev.ru>2007-04-18 11:09:38 +0000
commit5dbc83df060fb4593a4e1f1006ed999858b26c0c (patch)
treebc3ab986f951cb00dcb3590b64ba3af4973b7037
parentde92bcccee07fc98e6a9f4c71823a85054e7d482 (diff)
downloadnginx-5dbc83df060fb4593a4e1f1006ed999858b26c0c.tar.gz
nginx-5dbc83df060fb4593a4e1f1006ed999858b26c0c.zip
fix make dependecies: pcre-6.5+ already has pcre.h
-rw-r--r--auto/lib/pcre/make6
1 files changed, 4 insertions, 2 deletions
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