aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMatthew Burgess <matthew@linuxfromscratch.org>2008-01-27 17:24:19 +0000
committerMatthew Burgess <matthew@linuxfromscratch.org>2008-01-27 17:24:19 +0000
commit66195c81300639cc53e3d2b088f0cfbbb6e969a7 (patch)
tree7917dce456dcbfbe2723ad5bf0ce129ebcc6ca10 /Makefile
parent04b3d73c4c5af590f54c7098c0ea5c43c728f3e4 (diff)
Make sure obfuscate.sh is run using Bash. It fails on Ubuntu which has /bin/sh linked to dash.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@8463 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 9a7110eaf..073f9333b 100644
--- a/Makefile
+++ b/Makefile
@@ -34,7 +34,7 @@ lfs: validxml profile-html
$(Q)for filename in `find $(BASEDIR) -name "*.html"`; do \
tidy -config tidy.conf $$filename; \
true; \
- sh obfuscate.sh $$filename; \
+ /bin/bash obfuscate.sh $$filename; \
sed -i -e "s@text/html@application/xhtml+xml@g" $$filename; \
done;