diff options
author | Tobias Brunner <tobias@strongswan.org> | 2015-12-04 11:21:19 +0100 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2015-12-04 12:10:57 +0100 |
commit | 63a778a25d1e628035d73fe86235ba4157932c1f (patch) | |
tree | 697deec60c50ace1e579c9d4c8db1009d4e32908 /src | |
parent | 057e6cc52466327dba7b9e21a472ef9f4028f118 (diff) | |
download | strongswan-63a778a25d1e628035d73fe86235ba4157932c1f.tar.bz2 strongswan-63a778a25d1e628035d73fe86235ba4157932c1f.tar.xz |
vici: Fix clean-local target for Perl bindings if they were not built
This is called when running `make distclean` (or indirectly via `make
distcheck`).
Diffstat (limited to 'src')
-rw-r--r-- | src/libcharon/plugins/vici/perl/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcharon/plugins/vici/perl/Makefile.am b/src/libcharon/plugins/vici/perl/Makefile.am index 1c2d86e53..9bc6262ac 100644 --- a/src/libcharon/plugins/vici/perl/Makefile.am +++ b/src/libcharon/plugins/vici/perl/Makefile.am @@ -18,7 +18,7 @@ Vici-Session/pm_to_blib: $(EXTRA_DIST) $(srcdir)/Vici-Session/Makefile (cd $(srcdir)/Vici-Session; make) clean-local: - (cd $(srcdir)/Vici-Session; make clean) + (cd $(srcdir)/Vici-Session; [ ! -f Makefile ] || make clean) if PERL_CPAN_INSTALL install-exec-local: Vici-Session/pm_to_blib |