summaryrefslogtreecommitdiff
path: root/editors/openoffice-1.0/files
diff options
context:
space:
mode:
authorMaho Nakata <maho@FreeBSD.org>2005-07-29 03:06:52 +0000
committerMaho Nakata <maho@FreeBSD.org>2005-07-29 03:06:52 +0000
commit9c2f442d3bd397e33a9447878c1415ef295cc73c (patch)
treecc551c69bc35f1f163a5253ff6748c97df4a8c9c /editors/openoffice-1.0/files
parent- add missing dependency (diff)
more robust generation of script
Notes
Notes: svn path=/head/; revision=140365
Diffstat (limited to 'editors/openoffice-1.0/files')
-rw-r--r--editors/openoffice-1.0/files/generate.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/editors/openoffice-1.0/files/generate.pl b/editors/openoffice-1.0/files/generate.pl
index 30cb431cfb6e..650fdc42b9ae 100644
--- a/editors/openoffice-1.0/files/generate.pl
+++ b/editors/openoffice-1.0/files/generate.pl
@@ -2,10 +2,10 @@
# generate full build shell script for OpenOffice.org
# Whom: Maho Nakata <maho@FreeBSD.org>
-# $FreeBSD: /tmp/pcvs/ports/editors/openoffice-1.0/files/Attic/generate.pl,v 1.1 2005-07-29 02:16:38 maho Exp $
+# $FreeBSD: /tmp/pcvs/ports/editors/openoffice-1.0/files/Attic/generate.pl,v 1.2 2005-07-29 03:06:51 maho Exp $
print "#!/bin/csh\n";
-print "/usr/bin/time make WITH_CCACHE=yes package package-rename solver sdk deinstall clean >& log.en\n";
+print "/usr/bin/time make WITH_CCACHE=yes deinstall clean package package-rename solver sdk deinstall clean >& log.en\n";
print "/usr/bin/time make ALL_LOCALIZED_LANGS=yes >& log.all\n";
open ( FILE, "< Makefile.localized") ;
@@ -14,7 +14,7 @@ while(<FILE>){
@tmp2=split ('"',$tmp[3]);
if ( $tmp[1] eq "\${LOCALIZED_LANG}") { $LANG=$tmp2[1];
print "make TWEAK_L10N=yes LOCALIZED_LANG=$LANG pre-everything\n";
- print "/usr/bin/time make LOCALIZED_LANG=$LANG WITH_CCACHE=yes package package-rename deinstall >& log.$LANG\n";
+ print "/usr/bin/time make LOCALIZED_LANG=$LANG WITH_CCACHE=yes deinstall package package-rename deinstall >& log.$LANG\n";
}
}
close FILE;