mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-26 05:02:18 +00:00
437cdc00bd
2) cleanups 3) procedure of localized builds have been substantially changed 4) make use of ccache
16 lines
335 B
Bash
16 lines
335 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD: /tmp/pcvs/ports/editors/openoffice.org-2.0-devel/files/Attic/openoffice-wrapper,v 1.13 2004-06-13 23:57:01 maho Exp $
|
|
|
|
oopath=%%PREFIX%%/OpenOffice.org%%RELEASE_NR%%/program/
|
|
program=`echo $0 | sed -e 's|.*-%%RELEASE_NR%%-||'`
|
|
|
|
case $program in
|
|
$0)
|
|
$oopath/soffice "$@"
|
|
;;
|
|
*)
|
|
$oopath/$program "$@"
|
|
;;
|
|
esac
|