diff options
author | Martin Schlemmer <azarah@gentoo.org> | 2003-01-29 15:25:15 +0000 |
---|---|---|
committer | Martin Schlemmer <azarah@gentoo.org> | 2003-01-29 15:25:15 +0000 |
commit | 2ca132a54ed6a325061d2aba566271f6810a14d8 (patch) | |
tree | 5d94d200249985a88b429e9f91119ff42c92bd70 /app-office | |
parent | version bump. (diff) | |
download | gentoo-2-2ca132a54ed6a325061d2aba566271f6810a14d8.tar.gz gentoo-2-2ca132a54ed6a325061d2aba566271f6810a14d8.tar.bz2 gentoo-2-2ca132a54ed6a325061d2aba566271f6810a14d8.zip |
Fix not setting PATH correctly all the time in Linux*Env.Set
Diffstat (limited to 'app-office')
-rw-r--r-- | app-office/openoffice/openoffice-1.0.2.ebuild | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app-office/openoffice/openoffice-1.0.2.ebuild b/app-office/openoffice/openoffice-1.0.2.ebuild index bf3b420bfd2e..f9e174f7b939 100644 --- a/app-office/openoffice/openoffice-1.0.2.ebuild +++ b/app-office/openoffice/openoffice-1.0.2.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/app-office/openoffice/openoffice-1.0.2.ebuild,v 1.4 2003/01/29 12:50:55 azarah Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/openoffice/openoffice-1.0.2.ebuild,v 1.5 2003/01/29 15:25:15 azarah Exp $ # IMPORTANT: This is extremely alpha!!! @@ -332,6 +332,8 @@ src_compile() { # Setup path for new gcc layout in $LinuxEnvSet, else the build # environment will not find gcc ... (Az) perl -pi -e "s|PATH \.:\$SOLARVER|PATH \.:${gcc_path}:\$SOLARVER|" ${LinuxEnvSet} + # New builds start quoting stuff ... + perl -pi -e "s|PATH \"\.:\$SOLARVER|PATH \"\.:${gcc_path}:\$SOLARVER|" ${LinuxEnvSet} fi # Should the build use multiprocessing? |