diff options
author | Timo Sirainen <cras@irssi.org> | 2002-10-28 00:12:42 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2002-10-28 00:12:42 +0000 |
commit | ba52d084d62a11804759fb5dfebeb67fe534df99 (patch) | |
tree | 1a2194a48863b7fd0cb2798c36533aa15cf34c78 /src/perl | |
parent | d58e119a98a534045f9a016e5e41477443ba3b98 (diff) | |
download | irssi-ba52d084d62a11804759fb5dfebeb67fe534df99.zip |
Try to fix perl compilation for people whose perl has been compiled with
non-GCC but are trying to compile irssi with GCC.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2976 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/perl')
-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 293bd80c..16dc55da 100644 --- a/src/perl/Makefile.am +++ b/src/perl/Makefile.am @@ -141,7 +141,7 @@ all-local: if [ ! -f Makefile ]; then \ $(perlpath) Makefile.PL $(PERL_MM_PARAMS); \ fi && \ - ($(MAKE) || $(MAKE)) && \ + ($(MAKE) CC=$(CC) || $(MAKE) CC=$(CC)) && \ cd ..; \ done |