diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2012-04-05 04:08:33 +0000 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2012-04-05 04:08:33 +0000 |
commit | 3710570619cf6575e1ee119408e0bec3553864fe (patch) | |
tree | c081d2ab19f19c3b8a3962aa946ba6a384420ee1 /chapter06 | |
parent | b0c8647eb333f4ff03a1423413e5cb28c4a62c15 (diff) |
Change the location for the python gdb module
generated by gcc to the correct location.
Fix a logic error in the ifdown script.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9805 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06')
-rw-r--r-- | chapter06/gcc.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chapter06/gcc.xml b/chapter06/gcc.xml index de0520a8c..9d9fac292 100644 --- a/chapter06/gcc.xml +++ b/chapter06/gcc.xml @@ -292,8 +292,8 @@ SEARCH_DIR("/usr/lib");</computeroutput></screen> <para>Finally, move a misplced file:</para> <screen><userinput remap="install">case `uname -m` in - i?86) GDBDIR=/usr/share/gdb/auto-load/usr/lib/gcc/i686-pc-linux-gnu/&gcc-version;/ ;; - *) GDBDIR=/usr/share/gdb/auto-load/usr/lib64/gcc/x86_64-pc-linux-gnu/&gcc-version;/ ;; + i?86) GDBDIR=/usr/share/gdb/auto-load/usr/lib/ ;; + *) GDBDIR=/usr/share/gdb/auto-load/usr/lib64/ ;; esac mkdir -pv $GDBDIR |