diff options
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | process-scripts.sh | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -67,7 +67,7 @@ nochunks: validxml profile-html @echo "Running Tidy..." $(Q)tidy -config tidy.conf $(BASEDIR)/$(NOCHUNKS_OUTPUT) || true @echo "Running obfuscate.sh..." - $(Q)sh obfuscate.sh $(BASEDIR)/$(NOCHUNKS_OUTPUT) + $(Q)bash obfuscate.sh $(BASEDIR)/$(NOCHUNKS_OUTPUT) $(Q)sed -i -e "s@text/html@application/xhtml+xml@g" \ $(BASEDIR)/$(NOCHUNKS_OUTPUT) @@ -79,7 +79,7 @@ tmpdir: validxml: tmpdir @echo "Processing bootscripts..." - $(Q)sh process-scripts.sh $(RENDERTMP) + $(Q)bash process-scripts.sh $(RENDERTMP) @echo "Validating the book..." $(Q)xmllint --nonet --noent --xinclude --postvalid \ -o $(RENDERTMP)/lfs-full.xml index.xml diff --git a/process-scripts.sh b/process-scripts.sh index 675b7f4f9..44518c423 100644 --- a/process-scripts.sh +++ b/process-scripts.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # Boot scripts for s in bootscripts/lfs/init.d/* \ |