Remove -e bashisms from Makefile

This commit is contained in:
cd-builder user 2012-09-17 00:49:36 +00:00
parent 4ba7173970
commit a2e6782770
1 changed files with 3 additions and 2 deletions

View File

@ -295,9 +295,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