diff options
| author | Darryl L. Pierce <mcpierce@apache.org> | 2012-11-26 15:58:44 +0000 |
|---|---|---|
| committer | Darryl L. Pierce <mcpierce@apache.org> | 2012-11-26 15:58:44 +0000 |
| commit | 8da741302699ffb12339ca4eb29c2058a503ef7a (patch) | |
| tree | 6521077e0e8d257f5d030e796dc725aa9f8da29f /cpp/bindings/qpid | |
| parent | 850758ab9572ff2349ab5c78a9d6c0a4ff48b03b (diff) | |
| download | qpid-python-8da741302699ffb12339ca4eb29c2058a503ef7a.tar.gz | |
QPID-4415: Fixes Perl bindings install location
Removed the DESTDIR option in the Makefile.am file for the Qpid language
bindings for Perl.
Also includes a fix from Jimmy Jones to remove the LIB argument to
Makefile.PL to ensure the install location is correct.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1413693 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/bindings/qpid')
| -rw-r--r-- | cpp/bindings/qpid/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/bindings/qpid/Makefile.am b/cpp/bindings/qpid/Makefile.am index 96e2a58414..b3849a6d28 100644 --- a/cpp/bindings/qpid/Makefile.am +++ b/cpp/bindings/qpid/Makefile.am @@ -44,7 +44,7 @@ perl/cqpid_perl.cpp: $(srcdir)/perl/perl.i $(srcdir)/qpid.i $(srcdir)/../swig_pe perl/Makefile: perl/cqpid_perl.cpp cd perl; \ - $(PERL) Makefile.PL PREFIX=$(prefix) LIB=$(PERL_ARCHLIB) ; \ + $(PERL) Makefile.PL PREFIX=$(prefix) ; \ cd .. all-local: perl/Makefile @@ -54,7 +54,7 @@ all-local: perl/Makefile install-exec-local: cd perl ; \ - $(MAKE) pure_install DESTDIR=$(prefix) ; \ + $(MAKE) pure_install ; \ cd .. clean-local: |
