diff options
author | Sascha Schumann <sas@php.net> | 2000-04-30 03:20:09 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2000-04-30 03:20:09 +0000 |
commit | 953fe189dacec1f3079f1c2c043b6644725b643e (patch) | |
tree | 3fe55c2cf9084cb6d06a9fe01b096c5e8656d57d /regex | |
parent | 952f58b66d579cd6a171c4b25269f151e73cd3fa (diff) | |
download | php-git-953fe189dacec1f3079f1c2c043b6644725b643e.tar.gz |
Overall UNIX build system improvements:
* Makefile header is now completely dynamic
* Absolute paths in (top_)?(src|build)dir and VPATH
(fixes Tru64 support)
* VPATH does not contain variables anymore
(fixes UnixWare support)
Diffstat (limited to 'regex')
-rw-r--r-- | regex/Makefile.in | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/regex/Makefile.in b/regex/Makefile.in index f3215ab42f..27b0331b9b 100644 --- a/regex/Makefile.in +++ b/regex/Makefile.in @@ -1,10 +1,5 @@ -DEPTH = .. -topsrcdir = @topsrcdir@ -srcdir = @srcdir@ -VPATH = @srcdir@ - LTLIBRARY_NAME = libregex.la LTLIBRARY_SOURCES = regcomp.c regexec.c regerror.c regfree.c -include $(topsrcdir)/build/ltlib.mk +include $(top_srcdir)/build/ltlib.mk |