diff options
author | Joe Sapp <nixphoeni@gentoo.org> | 2005-07-30 18:15:36 +0000 |
---|---|---|
committer | Joe Sapp <nixphoeni@gentoo.org> | 2005-07-30 18:15:36 +0000 |
commit | f7c52068123dab639b48b9bb7e77857a67be4821 (patch) | |
tree | 15c21047f5f7252329eca4e872ce21495cb8f2a4 /eclass | |
parent | QA: Use dobin instead of exeinto /usr/bin and doexe. (diff) | |
download | gentoo-2-f7c52068123dab639b48b9bb7e77857a67be4821.tar.gz gentoo-2-f7c52068123dab639b48b9bb7e77857a67be4821.tar.bz2 gentoo-2-f7c52068123dab639b48b9bb7e77857a67be4821.zip |
Made finding script URIs a little smarter
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/gdesklets.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/gdesklets.eclass b/eclass/gdesklets.eclass index 202ddbe544df..ce532805c919 100644 --- a/eclass/gdesklets.eclass +++ b/eclass/gdesklets.eclass @@ -1,6 +1,6 @@ # Copyright 2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/eclass/gdesklets.eclass,v 1.8 2005/07/11 15:08:06 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/gdesklets.eclass,v 1.9 2005/07/30 18:15:36 nixphoeni Exp $ # # Authors: Joe Sapp <nixphoeni@gentoo.org> # Mike Gardiner <obz@gentoo.org> @@ -91,8 +91,8 @@ gdesklets_src_install() { insinto ${GD_INSDIR} doins ${DSP} - SCRIPTS=$(grep "script uri" ${DSP} | \ - sed -e 's:.*<script uri=": :g' -e 's:"/>.*: :g') + SCRIPTS=$(grep "script .*uri" ${DSP} | \ + sed -e 's:.*<script .*uri=": :g' -e 's:"/>.*: :g') # For each one of the scripts, change to its # base directory and change the install location |