From: Sebastian Harl Date: Tue, 13 Nov 2007 23:00:05 +0000 (+0100) Subject: bindings/Makefile.am: perl/Makefile depends on config.status. X-Git-Tag: collectd-4.3.0beta0~101 X-Git-Url: https://git.octo.it/?p=collectd.git;a=commitdiff_plain;h=3875fdeed389b260ea6c36aaeb89979c23a543e9 bindings/Makefile.am: perl/Makefile depends on config.status. Any configuration changes should be forwarded to the perl bindings. This patch will cause perl/Makefile to be recreated after a rerun of the configure script. Signed-off-by: Sebastian Harl --- diff --git a/bindings/Makefile.am b/bindings/Makefile.am index 37e31ea1..45735722 100644 --- a/bindings/Makefile.am +++ b/bindings/Makefile.am @@ -1,4 +1,5 @@ -EXTRA_DIST = perl/Collectd.pm perl/Makefile.PL perl/Collectd/Makefile.PL perl/Collectd/Unixsock.pm +EXTRA_DIST = perl/Collectd.pm perl/Makefile.PL perl/Collectd/Makefile.PL \ + perl/Collectd/Unixsock.pm all-local: @PERL_BINDINGS@ @@ -11,7 +12,8 @@ clean-local: perl: perl/Makefile $(MAKE) -C perl -perl/Makefile: perl/Makefile.PL perl/Collectd/Makefile.PL +perl/Makefile: perl/Makefile.PL perl/Collectd/Makefile.PL \ + $(top_builddir)/config.status cd perl && @PERL@ Makefile.PL PREFIX=$(prefix) @PERL_BINDINGS_OPTIONS@ .PHONY: perl