diff options
author | Matthew Burgess <matthew@linuxfromscratch.org> | 2008-11-22 14:02:23 +0000 |
---|---|---|
committer | Matthew Burgess <matthew@linuxfromscratch.org> | 2008-11-22 14:02:23 +0000 |
commit | 63f41502838d5105dd96c66c7b262a6d7cc8c2ec (patch) | |
tree | b2a7af2e8a952a32eba4647e22b4a4b384fdcc37 | |
parent | e4eb4cce86846d9549d5c894658b6a486831623f (diff) |
Fix call to aux-file-data.sh for systems which don't link /bin/sh to /bin/bash (e.g. Kubuntu-8.10). Other shells (e.g. dash) don't contain pushd and popd as shell builtins.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@8746 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -84,7 +84,7 @@ validxml: tmpdir $(Q)xmllint --nonet --noent --xinclude --postvalid \ -o $(RENDERTMP)/lfs-full.xml index.xml $(Q)rm -f appendices/*.script - $(Q)sh aux-file-data.sh $(RENDERTMP)/lfs-full.xml + $(Q)./aux-file-data.sh $(RENDERTMP)/lfs-full.xml maketar: @echo "Making tarballs..." |