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-motif-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-motif-build.sh')
-rw-r--r-- | java/eclipse-devel/files/patch-features-launchers-motif-build.sh | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/java/eclipse-devel/files/patch-features-launchers-motif-build.sh b/java/eclipse-devel/files/patch-features-launchers-motif-build.sh deleted file mode 100644 index 3dfeb9174230..000000000000 --- a/java/eclipse-devel/files/patch-features-launchers-motif-build.sh +++ /dev/null @@ -1,33 +0,0 @@ ---- features/org.eclipse.platform.launchers/library/motif/build.sh~ Sat Feb 19 12:13:49 2005 -+++ features/org.eclipse.platform.launchers/library/motif/build.sh Sun Mar 20 15:27:04 2005 -@@ -55,6 +55,15 @@ - MOTIF_HOME=/bluebird/teamswt/swt-builddir/motif21 - OUTPUT_DIR="../../bin/$defaultWS/$defaultOS/$defaultOSArch" - ;; -+ "FreeBSD") -+ makefile="make_freebsd.mak" -+ defaultOS="freebsd" -+ defaultOSArch="x86" -+ defaultWS="motif" -+ X11_HOME=$X11BASE -+ MOTIF_HOME=$X11BASE -+ OUTPUT_DIR="../../bin/$defaultWS/$defaultOS/$defaultOSArch" -+ ;; - "SunOS") - makefile="make_solaris.mak" - defaultOS="solaris" -@@ -122,11 +131,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" |