summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2000-10-11 22:06:04 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2000-10-11 22:06:04 +0000
commit00f9af313b8b4a519cff26170a08ab3434a150e5 (patch)
treedfc398cc23ee1995745b7d50f9fc275561e9d95f /src
parent55299b6b4a9f65ae099187c018b0aedbe55ddd6b (diff)
downloadirssi-00f9af313b8b4a519cff26170a08ab3434a150e5.zip
try running make again if it fails the first time - it's probably
because Makefile.PL was updated and make needs to be run again. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@730 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src')
-rw-r--r--src/perl/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/perl/Makefile.am b/src/perl/Makefile.am
index 44f8d13a..775ccff9 100644
--- a/src/perl/Makefile.am
+++ b/src/perl/Makefile.am
@@ -86,7 +86,7 @@ noinst_HEADERS = \
perl-common.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); fi; fi && $(MAKE) && 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); fi; fi && if ! $(MAKE); then $(MAKE); fi && cd ..; done
install-exec-local:
for dir in common irc; do cd $$dir && make install && cd ..; done