diff options
| author | Igor Sysoev <igor@sysoev.ru> | 2009-05-12 13:15:43 +0000 |
|---|---|---|
| committer | Igor Sysoev <igor@sysoev.ru> | 2009-05-12 13:15:43 +0000 |
| commit | d2af69adc6153a63856f45996ce178846c149dbd (patch) | |
| tree | 8aa90d8c50308b168ee1cbb965390274d9b77947 /auto/lib/pcre/makefile.bcc | |
| parent | bba78036c8ea33694be50a6d55945f6e73e5a7c4 (diff) | |
| download | nginx-d2af69adc6153a63856f45996ce178846c149dbd.tar.gz nginx-d2af69adc6153a63856f45996ce178846c149dbd.tar.bz2 | |
backout r2833: CURDIR was set to Unix style path
instead, do chdir inside Makefile
Diffstat (limited to 'auto/lib/pcre/makefile.bcc')
| -rw-r--r-- | auto/lib/pcre/makefile.bcc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/auto/lib/pcre/makefile.bcc b/auto/lib/pcre/makefile.bcc index 239d1293a..d31a5aa51 100644 --- a/auto/lib/pcre/makefile.bcc +++ b/auto/lib/pcre/makefile.bcc @@ -6,7 +6,9 @@ CFLAGS = -q -O2 -tWM -w-8004 $(CPU_OPT) PCREFLAGS = -DPCRE_STATIC -DPOSIX_MALLOC_THRESHOLD=10 -pcre.lib: pcre.h +pcre.lib: + cd $(PCRE) + bcc32 -q -edftables dftables.c dftables > chartables.c @@ -16,6 +18,7 @@ pcre.lib: pcre.h tlib pcre.lib +maketables.obj +get.obj +study.obj +pcre.obj pcre.h: + cd $(PCRE) patch -o pcre.h pcre.in patch.pcre.in patch -o config.h config.in patch.config.in patch < patch.pcre.c |
