Browse Source

Dimitar Zhekov <jimmy@is-vn.bg>:

Stripping must take place if OPT = 1, not if OPT = 0.


git-svn-id: http://www.rocklinux.org/svn/rock-linux/trunk@1415 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc
rocklinux
Dimitar Zhekov 21 years ago
parent
commit
1add2ad388
2 changed files with 2 additions and 1 deletions
  1. +1
    -0
      Documentation/Developers/CHANGELOG-RENE
  2. +1
    -1
      package/base/gcc3/gcc3.conf

+ 1
- 0
Documentation/Developers/CHANGELOG-RENE

@ -9,6 +9,7 @@
- Alejandro Mery: fixed auto-mantainer in misc/newpackage.sh
- Stefan Paletta: implemented enlightenment category
- Mathieu: updated gnomemeeting and lftp
- Dimitar Zhekov: fix gcc3 optimisation
*) 2003-09-14 (2.0.0-rc1 - 2.0.0-rc2)

+ 1
- 1
package/base/gcc3/gcc3.conf

@ -50,7 +50,7 @@ custmain() {
mv Makefile.in Makefile.in.orig
sed -e 's/LANGUAGES="[^"]*"/LANGUAGES="c"/g' \
< Makefile.in.orig > Makefile.in
elif [ "$ROCKCFG_OPT" = 0 ] ; then
elif [ "$ROCKCFG_OPT" = 1 ] ; then
if [ -f libstdc++*/configure ] ; then
echo "Setting DEBUG_FLAGS='-s' in libstdc++ configure."
( cd libstdc++* ; mv configure configure.orig

Loading…
Cancel
Save