diff options
author | Mike Hommey <mh@glandium.org> | 2014-07-30 09:16:13 (GMT) |
---|---|---|
committer | Jason Evans <je@fb.com> | 2014-08-05 23:12:32 (GMT) |
commit | cf6032d0efbc2e3e9f736a8cd69846cf7427640b (patch) | |
tree | 7065b9bdf80201cc3373b31b4acc21f835a6c1ae /Makefile.in | |
parent | d79d59b86649104e198e4b6a0892e673fcaada09 (diff) | |
download | jemalloc-cf6032d0efbc2e3e9f736a8cd69846cf7427640b.zip jemalloc-cf6032d0efbc2e3e9f736a8cd69846cf7427640b.tar.gz jemalloc-cf6032d0efbc2e3e9f736a8cd69846cf7427640b.tar.bz2 |
Remove ${srcroot} from cfghdrs_in, cfgoutputs_in and cfghdrs_tup in configure
On Windows, srcroot may start with "drive:", which confuses autoconf's
AC_CONFIG_* macros. The macros works equally well without ${srcroot},
provided some adjustment to Makefile.in.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index 839bb08..a21acd4 100644 --- a/Makefile.in +++ b/Makefile.in @@ -42,9 +42,9 @@ XSLTPROC := @XSLTPROC@ AUTOCONF := @AUTOCONF@ _RPATH = @RPATH@ RPATH = $(if $(1),$(call _RPATH,$(1))) -cfghdrs_in := @cfghdrs_in@ +cfghdrs_in := $(addprefix $(srcroot),@cfghdrs_in@) cfghdrs_out := @cfghdrs_out@ -cfgoutputs_in := @cfgoutputs_in@ +cfgoutputs_in := $(addprefix $(srcroot),@cfgoutputs_in@) cfgoutputs_out := @cfgoutputs_out@ enable_autogen := @enable_autogen@ enable_code_coverage := @enable_code_coverage@ |