diff options
author | Timo Sirainen <cras@irssi.org> | 2001-03-15 15:42:11 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2001-03-15 15:42:11 +0000 |
commit | 689fb5a26727434e235f2f2ac091ae1992b66554 (patch) | |
tree | 7e41211b7977a5acd5764d5106f4abcaadec9736 | |
parent | c6843a71a5de5ac7c6d9ebeba485ddb6618981fe (diff) | |
download | irssi-689fb5a26727434e235f2f2ac091ae1992b66554.zip |
if $(MAKE) crap -> ($(MAKE) || $(MAKE)), a lot better :)
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1391 dbcabf3a-b0e7-0310-adc4-f8d773084564
-rw-r--r-- | src/perl/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/perl/Makefile.am b/src/perl/Makefile.am index e62ed079..0b5c7853 100644 --- a/src/perl/Makefile.am +++ b/src/perl/Makefile.am @@ -99,7 +99,7 @@ noinst_HEADERS = \ perl-signals.h all-local: - for dir in common irc; do cd $$dir && if [ ! -f Makefile ]; then if [ "x$(PERL_LIB_DIR)" = "x" ]; then $(perlpath) Makefile.PL; else $(perlpath) Makefile.PL LIB=$(PERL_LIB_DIR) PREFIX=$(PERL_LIB_DIR); fi; fi && if $(MAKE); then echo; else $(MAKE); fi && cd ..; done + for dir in common irc; do cd $$dir && if [ ! -f Makefile ]; then if [ "x$(PERL_LIB_DIR)" = "x" ]; then $(perlpath) Makefile.PL; else $(perlpath) Makefile.PL LIB=$(PERL_LIB_DIR) PREFIX=$(PERL_LIB_DIR); fi; fi && ($(MAKE) || $(MAKE)) && cd ..; done install-exec-local: for dir in common irc; do cd $$dir && $(MAKE) install && cd ..; done |