summaryrefslogtreecommitdiff
path: root/editors/openoffice-3/files/generate.pl
diff options
context:
space:
mode:
authorMaho Nakata <maho@FreeBSD.org>2005-02-20 04:38:57 +0000
committerMaho Nakata <maho@FreeBSD.org>2005-02-20 04:38:57 +0000
commit1177b8c87547d9cb950620b6e89809e77d3e8c7a (patch)
treefdac534d8ac24bbf0758d218e937fe3943bdbee5 /editors/openoffice-3/files/generate.pl
parent- update chinese/arphicttf path in RUN_DEPENDS (diff)
Update to 1.9m79
o Update mozilla runtime to 1.7.5 o Add entries for newly added localized langs: hi-IN, ms [1] Submitted by: HIRANO, Kazunari <khirano@openoffice.org> [1]
Notes
Notes: svn path=/head/; revision=129330
Diffstat (limited to 'editors/openoffice-3/files/generate.pl')
-rw-r--r--editors/openoffice-3/files/generate.pl8
1 files changed, 4 insertions, 4 deletions
diff --git a/editors/openoffice-3/files/generate.pl b/editors/openoffice-3/files/generate.pl
index 1d4f4f109f54..59ad25fefbbc 100644
--- a/editors/openoffice-3/files/generate.pl
+++ b/editors/openoffice-3/files/generate.pl
@@ -2,12 +2,12 @@
# generate full build shell script for OpenOffice.org
# Whom: Maho Nakata <maho@FreeBSD.org>
-# $FreeBSD: /tmp/pcvs/ports/editors/openoffice-3/files/generate.pl,v 1.2 2005-01-24 12:45:55 maho Exp $
+# $FreeBSD: /tmp/pcvs/ports/editors/openoffice-3/files/generate.pl,v 1.3 2005-02-20 04:38:57 maho Exp $
print "#!/bin/csh\n";
-print "/usr/bin/time make WITH_CCACHE=yes package package-rename solver sdk deinstall languagepack >& log.en\n";
+print "/usr/bin/time -h make WITH_CCACHE=yes package package-rename solver sdk deinstall languagepack >& log.en\n";
print "rm work/.configure* work/.build* \n";
-print "/usr/bin/time make ALL_LOCALIZED_LANGS=yes >& log.all\n";
+print "/usr/bin/time -h make ALL_LOCALIZED_LANGS=yes >& log.all\n";
open ( FILE, "< Makefile.localized") ;
while(<FILE>){
@@ -15,7 +15,7 @@ while(<FILE>){
@tmp2=split ('"',$tmp[3]);
if ( $tmp[0] eq ".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 languagepack package package-rename deinstall >& log.$LANG\n";
+ print "/usr/bin/time -h make LOCALIZED_LANG=$LANG WITH_CCACHE=yes languagepack package package-rename deinstall >& log.$LANG\n";
}
}
close FILE;