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 | 34fbf7bf338a18f7cf991a59e630ada467bddbbd (patch) | |
| tree | 27a96dc454bbdc7dcb8e3a747c8e6f1df67b8395 /qpid/cpp/bindings | |
| parent | aadfb457b5fe678b7ac48b91894348043653593a (diff) | |
| download | qpid-python-34fbf7bf338a18f7cf991a59e630ada467bddbbd.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@1413693 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/bindings')
| -rw-r--r-- | qpid/cpp/bindings/qpid/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/cpp/bindings/qpid/Makefile.am b/qpid/cpp/bindings/qpid/Makefile.am index 96e2a58414..b3849a6d28 100644 --- a/qpid/cpp/bindings/qpid/Makefile.am +++ b/qpid/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: |
