Displaying 3 results from an estimated 3 matches for "49bf6cc63".
2019 Dec 12
5
[PATCH 0/4] Various small build fixes
*** BLURB HERE? ***
Pino Toscano (4):
  build: stop shipping files generated by configure
  docs: fix out-of-source documentation build
  generator: do not generate mlv2v files when not needed
  perl: fix path to Build.PL
 docs/Makefile.am         |  4 ++--
 generator/main.ml        | 11 +++++++----
 perl/Makefile.am         |  2 +-
 python/Makefile.am       |  3 ++-
 tests/daemon/Makefile.am | 
2019 Dec 12
0
[PATCH 4/4] perl: fix path to Build.PL
It is a generated file, so it is in the build directory.
---
 perl/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/perl/Makefile.am b/perl/Makefile.am
index 49bf6cc63..212bcb81e 100644
--- a/perl/Makefile.am
+++ b/perl/Makefile.am
@@ -59,7 +59,7 @@ clean-local: Build
 	./Build clean
 
 Build: Build.PL
-	$(PERL) $(srcdir)/Build.PL --prefix "@prefix@"
+	$(PERL) Build.PL --prefix "@prefix@"
 
 TESTS_ENVIRONMENT = $(top_builddir)/run --test
 
--...
2019 Dec 12
8
[PATCH v2 0/6] Various small build fixes
*** BLURB HERE? ***
Pino Toscano (6):
  build: stop shipping files generated by configure
  docs: fix out-of-source documentation build
  generator: do not generate mlv2v files when not needed
  perl: fix path to Build.PL
  rust: fix path to lib.rs
  rust: fix list of generator-built files
 daemon/Makefile.am       |  8 ++++++--
 docs/Makefile.am         |  4 ++--
 generator/main.ml        | 11