diff options
author | Patrick Kursawe <phosphan@gentoo.org> | 2003-06-20 09:50:01 +0000 |
---|---|---|
committer | Patrick Kursawe <phosphan@gentoo.org> | 2003-06-20 09:50:01 +0000 |
commit | aebc3ed846ddae2f927c1f2c06f593982e5ef716 (patch) | |
tree | 10e8714a89465a265ad9ea31e3311d78877b954c /net-im/licq/files | |
parent | Fix a stupid version problem (diff) | |
download | gentoo-2-aebc3ed846ddae2f927c1f2c06f593982e5ef716.tar.gz gentoo-2-aebc3ed846ddae2f927c1f2c06f593982e5ef716.tar.bz2 gentoo-2-aebc3ed846ddae2f927c1f2c06f593982e5ef716.zip |
Fixing bug 21009 - debug flags were stripped incorrectly in configure
Diffstat (limited to 'net-im/licq/files')
-rw-r--r-- | net-im/licq/files/1.2.6-debugflag.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/net-im/licq/files/1.2.6-debugflag.patch b/net-im/licq/files/1.2.6-debugflag.patch new file mode 100644 index 000000000000..bbcc15007d01 --- /dev/null +++ b/net-im/licq/files/1.2.6-debugflag.patch @@ -0,0 +1,13 @@ +--- configure 2003-03-23 23:21:31.000000000 +0100 ++++ configure.new 2003-06-20 11:14:46.000000000 +0200 +@@ -3668,8 +3668,8 @@ + fi; + + if test "$licqdaemon_use_debug" = "no"; then +- CXXFLAGS="`echo $CXXFLAGS | sed s/-g//`" +- CFLAGS="`echo $CFLAGS | sed s/-g//`" ++ CXXFLAGS="`echo $CXXFLAGS | sed \"s/-g[^ ]*//\"`" ++ CFLAGS="`echo $CFLAGS | sed \"s/-g[^ ]*//\"`" + fi + + ac_ext=cc |