diff options
author | Matthew Burgess <matthew@linuxfromscratch.org> | 2008-01-27 17:24:19 +0000 |
---|---|---|
committer | Matthew Burgess <matthew@linuxfromscratch.org> | 2008-01-27 17:24:19 +0000 |
commit | 66195c81300639cc53e3d2b088f0cfbbb6e969a7 (patch) | |
tree | 7917dce456dcbfbe2723ad5bf0ce129ebcc6ca10 /Makefile | |
parent | 04b3d73c4c5af590f54c7098c0ea5c43c728f3e4 (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-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |