Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaja R Harinath <harinath@hurrynot.org>2004-06-29 09:25:33 +0400
committerRaja R Harinath <harinath@hurrynot.org>2004-06-29 09:25:33 +0400
commitda7a16cbc0e7ee224ccc96992a9d8daf828d5b03 (patch)
tree69df9973d28d9fc7bf69f7ea717a4c0ef612f9a3 /runtime
parentcd4559a82fee59c03f2ed6a8e704090734392a31 (diff)
(gmcs_exe): New. Set only if not W32.
(monotwo_DATA): Use it. From Atsushi Enomoto. svn path=/trunk/mono/; revision=30503
Diffstat (limited to 'runtime')
-rw-r--r--runtime/Makefile.am6
1 files changed, 4 insertions, 2 deletions
diff --git a/runtime/Makefile.am b/runtime/Makefile.am
index 411ae732d22..1a21389ce91 100644
--- a/runtime/Makefile.am
+++ b/runtime/Makefile.am
@@ -34,8 +34,10 @@ monoone_DATA = \
mcs.exe \
mbas.exe
-monotwo_DATA = \
- gmcs.exe
+if ! PLATFORM_WIN32
+gmcs_exe = gmcs.exe
+endif
+monotwo_DATA = $(gmcs_exe)
EXTRA_DIST= $(monobins_DATA) $(monoone_DATA) $(monotwo_DATA)