diff options
author | Zack Winkles <winkie@linuxfromscratch.org> | 2004-06-07 18:57:42 +0000 |
---|---|---|
committer | Zack Winkles <winkie@linuxfromscratch.org> | 2004-06-07 18:57:42 +0000 |
commit | 9109cd46dd8cbe0798713282e4908aeb98910a41 (patch) | |
tree | af4d7772f160b90d342463f27387e314125d9457 /chapter05 | |
parent | 71bbe67154812a63d55689259d1467b853a25b48 (diff) |
Use "gcc --print-file specs" to determine the location of the specs file
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@3761 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter05')
-rw-r--r-- | chapter05/adjusting.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chapter05/adjusting.xml b/chapter05/adjusting.xml index ea14302fa..ae676717e 100644 --- a/chapter05/adjusting.xml +++ b/chapter05/adjusting.xml @@ -39,7 +39,7 @@ to the new dynamic linker. A simple sed script will accomplish this:</para> <!-- Ampersands are needed to allow cut and paste --> -<screen><userinput>SPECFILE=/tools/lib/gcc/*/*/specs && +<screen><userinput>SPECFILE=`gcc --print-file specs` && sed -e 's@ /lib/ld-linux.so.2@ /tools/lib/ld-linux.so.2@g' \ $SPECFILE > tempspecfile && mv -f tempspecfile $SPECFILE && |