diff options
author | Norikatsu Shigemura <nork@FreeBSD.org> | 2004-07-25 08:01:09 +0000 |
---|---|---|
committer | Norikatsu Shigemura <nork@FreeBSD.org> | 2004-07-25 08:01:09 +0000 |
commit | 4085ba54b41d14620736520c2c40425a544cb5a4 (patch) | |
tree | 2ccfe4e95d3be2092b542c6da73c58fb1826e781 /java/eclipse/files/patch-launcher-motif-build.csh | |
parent | Fix build on 4.x. (diff) |
Update to 3.0.
Submitted by: Panagiotis Astithas <past@netmode.ntua.gr>
Jeremy Faulkner <gldisater@gldis.ca>
Torben Jager <Torben.Jaeger@t-online.de>
Georg-W. Koltermann <gwk@rahn-koltermann.de>
Reviewed by: java
Notes
Notes:
svn path=/head/; revision=114609
Diffstat (limited to 'java/eclipse/files/patch-launcher-motif-build.csh')
-rw-r--r-- | java/eclipse/files/patch-launcher-motif-build.csh | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/java/eclipse/files/patch-launcher-motif-build.csh b/java/eclipse/files/patch-launcher-motif-build.csh new file mode 100644 index 000000000000..d041278b42d5 --- /dev/null +++ b/java/eclipse/files/patch-launcher-motif-build.csh @@ -0,0 +1,31 @@ +--- plugins/platform-launcher/library/motif/build.csh.orig Sun Jun 20 12:38:06 2004 ++++ plugins/platform-launcher/library/motif/build.csh Sun Jun 20 12:40:27 2004 +@@ -48,6 +48,13 @@ + set defaultWS = "motif" + breaksw + ++ case FreeBSD: ++ set makefile = "make_freebsd.mak" ++ set defaultOS = "freebsd" ++ set defaultOSArch = "x86" ++ set defaultWS = "motif" ++ breaksw ++ + case Linux: + set makefile = "make_linux.mak" + set defaultOS = "linux" +@@ -120,11 +127,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 + endif + else + echo "Unknown OS ($OS) -- build aborted" |