diff options
author | Greg Lewis <glewis@FreeBSD.org> | 2007-10-13 03:28:18 +0000 |
---|---|---|
committer | Greg Lewis <glewis@FreeBSD.org> | 2007-10-13 03:28:18 +0000 |
commit | 28a3f566fca055cd6c99ab2f6cd7390324c1814d (patch) | |
tree | 108450e1e2832da70f3e9cccbd427c8f60674457 /java/eclipse-devel/files/patch-features-launchers-gtk-build.sh | |
parent | Upgrade to 0.39. (diff) |
. Enlist eclipse-devel to get some wider spread of the Eclipse 3.3 port
before it replaces Eclipse 3.2.
The submitters (listed in alphabetical order) collaborated on this.
Submitted by: Mike Bowie <mbowie@buzmo.com>
Dan Rucci <dan@rucci.org>
Ken Yamada <ken@tydfam.jp>
Notes
Notes:
svn path=/head/; revision=201381
Diffstat (limited to 'java/eclipse-devel/files/patch-features-launchers-gtk-build.sh')
-rw-r--r-- | java/eclipse-devel/files/patch-features-launchers-gtk-build.sh | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/java/eclipse-devel/files/patch-features-launchers-gtk-build.sh b/java/eclipse-devel/files/patch-features-launchers-gtk-build.sh deleted file mode 100644 index 894278b8dfe1..000000000000 --- a/java/eclipse-devel/files/patch-features-launchers-gtk-build.sh +++ /dev/null @@ -1,41 +0,0 @@ ---- features/org.eclipse.platform.launchers/library/gtk/build.sh.orig Fri Apr 1 13:57:19 2005 -+++ features/org.eclipse.platform.launchers/library/gtk/build.sh Sun Apr 3 11:37:51 2005 -@@ -67,6 +67,23 @@ - ;; - esac - ;; -+ "FreeBSD") -+ makefile="make_freebsd.mak" -+ defaultOS="freebsd" -+ case $MODEL in -+ amd64) -+ defaultOSArch="amd64" -+ OUTPUT_DIR="../../bin/$defaultWS/$defaultOS/$defaultOSArch" -+ ;; -+ i?86) -+ defaultOSArch="x86" -+ OUTPUT_DIR="../../bin/$defaultWS/$defaultOS/$defaultOSArch" -+ ;; -+ *) -+ echo "*** Unknown MODEL <${MODEL}>" -+ ;; -+ esac -+ ;; - "SunOS") - makefile="make_solaris.mak" - defaultOS="solaris" -@@ -112,11 +129,11 @@ - # If the OS is supported (a makefile exists) - if [ "$makefile" != "" ]; then - if [ "$extraArgs" != "" ]; then -- make -f $makefile $extraArgs -+ gmake -f $makefile $extraArgs - else - echo "Building $OS launcher. Defaults: -os $DEFAULT_OS -arch $DEFAULT_OS_ARCH -ws $DEFAULT_WS" -- make -f $makefile clean -- make -f $makefile all -+ gmake -f $makefile clean -+ gmake -f $makefile all - fi - else - echo "Unknown OS ($OS) -- build aborted" |