mirror of
https://github.com/irssi/irssi.git
synced 2024-11-03 04:27:19 -05:00
if $(MAKE) crap -> ($(MAKE) || $(MAKE)), a lot better :)
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1391 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
c6843a71a5
commit
689fb5a267
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user