From: Francesco Chemolli Date: Mon, 12 May 2014 09:42:30 +0000 (+0200) Subject: Changed subst_perlshell Makefile recipe to use the actual source file name X-Git-Tag: SQUID_3_5_0_1~236 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=17d90eb6fca46b1a26e2924016c27fe4ad741585;p=thirdparty%2Fsquid.git Changed subst_perlshell Makefile recipe to use the actual source file name --- diff --git a/src/Common.am b/src/Common.am index 11c03c3513..b0d89fc5b5 100644 --- a/src/Common.am +++ b/src/Common.am @@ -46,4 +46,4 @@ endif COMPAT_LIB = $(top_builddir)/compat/libcompat-squid.la $(LIBPROFILER) ## Some helpers are written in Perl and need the local shell defined properly -subst_perlshell = sed -e 's,[@]PERL[@],$(PERL),g' <$(srcdir)/$@.pl.in >$@ || ($(RM) -f $@ ; exit 1) +subst_perlshell = sed -e 's,[@]PERL[@],$(PERL),g' <$< >$@ || ($(RM) -f $@ ; exit 1)