aboutsummaryrefslogtreecommitdiffstats
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
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
-rw-r--r--Makefile2
-rw-r--r--general.ent4
2 files changed, 3 insertions, 3 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;
diff --git a/general.ent b/general.ent
index bec402070..e1c150d84 100644
--- a/general.ent
+++ b/general.ent
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
-<!ENTITY version "SVN-20080124">
-<!ENTITY releasedate "January 24, 2007">
+<!ENTITY version "SVN-20080127">
+<!ENTITY releasedate "January 27, 2007">
<!ENTITY milestone "7.0">
<!ENTITY generic-version "development"> <!-- Use "development", "testing", or "x.y[-pre{x}]" -->