Displaying 2 results from an estimated 2 matches for "780024f".
Did you mean:
380024
2013 May 01
2
[PATCH 1/2] perl: Fix install target for separated builds.
---
perl/Makefile.am | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/perl/Makefile.am b/perl/Makefile.am
index d34adbe..780024f 100644
--- a/perl/Makefile.am
+++ b/perl/Makefile.am
@@ -87,7 +87,8 @@ clean-local:
rm -f Makefile-pl
install-data-hook:
- $(MAKE) -f Makefile-pl DESTDIR=$(DESTDIR) install
+ $(MAKE) -C $(srcdir) -f $(abs_builddir)/Makefile-pl \
+ DESTDIR=$(DESTDIR) install
endif
--
1.7.10.4
2013 May 28
3
[PATCH 1/2] Revert "perl: Fix build and test to work with separated builds."
...top_builddir@/src/.libs -lguestfs',
+ INC => '-I@top_builddir@/src -I@top_srcdir@/src',
TYPEMAPS => [ '@srcdir@/typemap' ],
CCFLAGS => $Config{ccflags} . ' -DGUESTFS_PRIVATE=1 @CFLAGS@',
);
diff --git a/perl/Makefile.am b/perl/Makefile.am
index 780024f..7b8f5d3 100644
--- a/perl/Makefile.am
+++ b/perl/Makefile.am
@@ -64,20 +64,10 @@ TESTS_ENVIRONMENT = $(top_builddir)/run --test
INSTALLDIRS = site
all: Makefile-pl src_deps
- $(MAKE) -C $(srcdir) -f $(abs_builddir)/Makefile-pl \
- INST_ARCHLIB=$(abs_builddir)/blib/arch \
- INST_SCRIPT=$(abs_...