BACKPORT: Remove -e bashisms from Makefile

This commit is contained in:
Steve McIntyre 2012-09-29 11:57:57 +00:00
parent 06a611d49d
commit 8f8e026611
2 changed files with 4 additions and 2 deletions

View File

@ -294,9 +294,10 @@ $(BDIR)/rawlist:
if [ "$(INSTALLER_CD)"x = "1"x ] ; then \
: ; \
elif [ "$(INSTALLER_CD)"x = "2"x -o "$(INSTALLER_CD)"x = "C"x ] ; then \
echo -e "mawk" >>$(BDIR)/rawlist; \
echo "mawk" >>$(BDIR)/rawlist; \
else \
echo -e "mawk\nexim4-daemon-light" >>$(BDIR)/rawlist; \
echo "mawk" >>$(BDIR)/rawlist; \
echo "exim4-daemon-light" >>$(BDIR)/rawlist; \
fi; \
fi

View File

@ -59,6 +59,7 @@ debian-cd (3.1.6) UNRELEASED-backport; urgency=low
(loading from a CD/DVD used over the network). Closes: Bug #673576
* Explicitly add s390-tools and sysconfig-hardware for s390.
* Make grab_md5 more robust
* Remove -e bashisms from Makefile
-- Raphaël Hertzog <hertzog@debian.org> Fri, 04 Feb 2011 09:59:21 +0100