diff options
author | Dan Nichilson <dnicholson@linuxfromscratch.org> | 2007-07-24 22:51:20 +0000 |
---|---|---|
committer | Dan Nichilson <dnicholson@linuxfromscratch.org> | 2007-07-24 22:51:20 +0000 |
commit | 25a447101567968d6eb88484568ad23ca45430eb (patch) | |
tree | 1885672aacc2f1ccb6939d073286bb2a39be07ed /chapter05/adjusting.xml | |
parent | 04896e661b53bfc723a5343c1eb9d9230b5fb28e (diff) |
Revert some && deletions
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@8242 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter05/adjusting.xml')
-rw-r--r-- | chapter05/adjusting.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chapter05/adjusting.xml b/chapter05/adjusting.xml index 0d0c76e56..bad013455 100644 --- a/chapter05/adjusting.xml +++ b/chapter05/adjusting.xml @@ -66,9 +66,9 @@ ln -sv /tools/bin/ld /tools/$(gcc -dumpmachine)/bin/ld</userinput></screen> their length):</para> <!-- && used to ease copy and pasting --> -<screen><userinput>GCC_INCLUDEDIR=`dirname $(gcc -print-libgcc-file-name)`/include -find ${GCC_INCLUDEDIR}/* -maxdepth 0 -xtype d -exec rm -rvf '{}' \; -rm -vf `grep -l "DO NOT EDIT THIS FILE" ${GCC_INCLUDEDIR}/*` +<screen><userinput>GCC_INCLUDEDIR=`dirname $(gcc -print-libgcc-file-name)`/include && +find ${GCC_INCLUDEDIR}/* -maxdepth 0 -xtype d -exec rm -rvf '{}' \; && +rm -vf `grep -l "DO NOT EDIT THIS FILE" ${GCC_INCLUDEDIR}/*` && unset GCC_INCLUDEDIR</userinput></screen> <caution> |