diff options
author | Jason Evans <je@fb.com> | 2014-10-04 07:35:07 (GMT) |
---|---|---|
committer | Jason Evans <je@fb.com> | 2014-10-04 07:35:07 (GMT) |
commit | a4a972d9a163a57183f851535104f4e8ac78f511 (patch) | |
tree | f2fb5a368331b424d6f032d03d67a78f87a92cba /Makefile.in | |
parent | b72d4abc5fb1185e4017c014d521693a99f9175b (diff) | |
download | jemalloc-a4a972d9a163a57183f851535104f4e8ac78f511.zip jemalloc-a4a972d9a163a57183f851535104f4e8ac78f511.tar.gz jemalloc-a4a972d9a163a57183f851535104f4e8ac78f511.tar.bz2 |
Fix install_lib target (incorrect jemalloc.pc path).
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 52f5a9d..50f6596 100644 --- a/Makefile.in +++ b/Makefile.in @@ -101,7 +101,7 @@ DSOS := $(objroot)lib/$(LIBJEMALLOC).$(SOREV) ifneq ($(SOREV),$(SO)) DSOS += $(objroot)lib/$(LIBJEMALLOC).$(SO) endif -PC := $(srcroot)jemalloc.pc +PC := $(objroot)jemalloc.pc MAN3 := $(objroot)doc/jemalloc$(install_suffix).3 DOCS_XML := $(objroot)doc/jemalloc$(install_suffix).xml DOCS_HTML := $(DOCS_XML:$(objroot)%.xml=$(srcroot)%.html) |