summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sys-kernel/ksymoops/ksymoops-2.4.7.ebuild')
-rw-r--r--sys-kernel/ksymoops/ksymoops-2.4.7.ebuild4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys-kernel/ksymoops/ksymoops-2.4.7.ebuild b/sys-kernel/ksymoops/ksymoops-2.4.7.ebuild
index d84a79f21a68..1b4036402c3e 100644
--- a/sys-kernel/ksymoops/ksymoops-2.4.7.ebuild
+++ b/sys-kernel/ksymoops/ksymoops-2.4.7.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-kernel/ksymoops/ksymoops-2.4.7.ebuild,v 1.2 2002/11/03 18:29:58 lostlogic Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-kernel/ksymoops/ksymoops-2.4.7.ebuild,v 1.3 2003/02/10 06:37:50 seemant Exp $
DESCRIPTION="Utility to decode a kernel oops, or other kernel call traces."
SRC_URI="ftp://ftp.kernel.org/pub/linux/utils/kernel/ksymoops/v2.4/${P}.tar.gz"
@@ -19,7 +19,7 @@ src_unpack() {
# and gcc's is not compatible with binutils libbfd.a
# linking against a bad mixuture results in missing symbols.
# linking against the shared (dynamic) objects seems to work.
- sed -e "/^STATIC/s/-Bstatic/-Bdynamic/" -e "s/-O2/${CFLAGS}/" < \
+ sed -e "/^STATIC/s:-Bstatic:-Bdynamic:" -e "s:-O2:${CFLAGS}:" < \
Makefile.orig > Makefile
# Note: this problem is fixed as of gcc-2.95.3-r6, so we can remove this
# fix eventually