diff options
author | Alastair Tse <liquidx@gentoo.org> | 2003-05-04 18:58:55 +0000 |
---|---|---|
committer | Alastair Tse <liquidx@gentoo.org> | 2003-05-04 18:58:55 +0000 |
commit | 7fcd92a53305860ca401a256f84c539b013eebcd (patch) | |
tree | aef469571fe90e1e2fc65e530a4851a81c6f8ffc /eclass/gnome2.eclass | |
parent | removed some old ebuilds (diff) | |
download | historical-7fcd92a53305860ca401a256f84c539b013eebcd.tar.gz historical-7fcd92a53305860ca401a256f84c539b013eebcd.tar.bz2 historical-7fcd92a53305860ca401a256f84c539b013eebcd.zip |
tighten up the gnome_omf_fix regex a bit.
Diffstat (limited to 'eclass/gnome2.eclass')
-rw-r--r-- | eclass/gnome2.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/gnome2.eclass b/eclass/gnome2.eclass index d0d9252504e4..0b098f89ba5d 100644 --- a/eclass/gnome2.eclass +++ b/eclass/gnome2.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/gnome2.eclass,v 1.32 2003/05/04 18:37:56 liquidx Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/gnome2.eclass,v 1.33 2003/05/04 18:58:55 liquidx Exp $ # # Authors: # Bruce A. Locke <blocke@shivan.org> @@ -106,8 +106,8 @@ gnome2_omf_fix() { for omf in ${omf_makefiles}; do omfbase=$(basename ${omf}) einfo "Fixing OMF Makefile: ${omfbase}" - sed -i -e 's:\(-scrollkeeper-update -p $(localstatedir)/scrollkeeper\)\([\s\\]*\)$:\1 -o $(DESTDIR)$(omf_dest_dir)\2:' ${omf} - sed -i -e 's:\(-scrollkeeper-update -p $(scrollkeeper_localstate_dir)\)\([\s\\]*\)$:\1 -o $(DESTDIR)$(omf_dest_dir)\2:' ${omf} + sed -i -e 's:\(-scrollkeeper-update -p $(localstatedir)/scrollkeeper\)\([ \t\\]*\)$:\1 -o $(DESTDIR)$(omf_dest_dir)\2:' ${omf} + sed -i -e 's:\(-scrollkeeper-update -p $(scrollkeeper_localstate_dir)\)\([ \t\\]*\)$:\1 -o $(DESTDIR)$(omf_dest_dir)\2:' ${omf} done } |