From: Amos Jeffries Date: Sun, 16 Aug 2009 12:20:00 +0000 (+1200) Subject: Fix release notes dist X-Git-Tag: SQUID_3_2_0_1~786 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b1410948f1417ffd3d939fb7cb5bd82cfbe6eff1;p=thirdparty%2Fsquid.git Fix release notes dist --- diff --git a/Makefile.am b/Makefile.am index f6ba0b5eea..3d5f3de59b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -23,8 +23,8 @@ dist-hook: cp -p $(top_srcdir)/RELEASENOTES.html $(distdir)/RELEASENOTES.html; \ else \ notes=`ls -1rt $(top_srcdir)/doc/release-notes/*.html | head -1`; \ - @if [ -f $(notes) ]; then \ - cp $(notes) $(distdir)/RELEASENOTES.html; \ + if [ -f $$notes ]; then \ + cp $$notes $(distdir)/RELEASENOTES.html; \ else \ touch $(distdir)/RELEASENOTES.html; \ fi; \