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:
authorAlan McGovern <alan.mcgovern@gmail.com>2011-04-28 13:46:32 +0400
committerAlan McGovern <alan.mcgovern@gmail.com>2011-04-28 13:46:32 +0400
commit17143e4877de758fe52b6eb9ecf68d035a7825db (patch)
tree3cb5cec9c4e4f0b4a840a745cd00c8ea938f64e7 /runtime/Makefile.am
parent88c6254f3488e479392f525c63c496f619587734 (diff)
[moonlight] Ensure we don't double-build the "build" profile now
Diffstat (limited to 'runtime/Makefile.am')
-rw-r--r--runtime/Makefile.am6
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/Makefile.am b/runtime/Makefile.am
index 96ace9516b7..dde00adef64 100644
--- a/runtime/Makefile.am
+++ b/runtime/Makefile.am
@@ -33,7 +33,7 @@ moon-do-basic-clean:
endif
if ONLY_MOONLIGHT
-build_profiles = build moonlight_raw
+build_profiles = moonlight_raw
test_profiles = moonlight_raw
else
@@ -45,10 +45,10 @@ build_profiles += moonlight_raw
test_profiles += moonlight_raw
moon-do-moonlight-raw: Makefile $(SUPPORT_FILES)
- cd $(mcs_topdir) && $(MAKE) NO_DIR_CHECK=1 PROFILES='build moonlight_raw' CC='$(CC)' all-profiles
+ cd $(mcs_topdir) && $(MAKE) NO_DIR_CHECK=1 PROFILES='moonlight_raw' CC='$(CC)' all-profiles
moon-do-moonlight-raw-clean:
- cd $(mcs_topdir) && $(MAKE) NO_DIR_CHECK=1 PROFILES='build moonlight_raw' CC='$(CC)' clean-profiles
+ cd $(mcs_topdir) && $(MAKE) NO_DIR_CHECK=1 PROFILES='moonlight_raw' CC='$(CC)' clean-profiles
moon-do-build: moon-do-moonlight-raw moon-do-basic
moon-do-clean: moon-do-moonlight-raw-clean moon-do-basic-clean