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

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan McGovern <alan.mcgovern@gmail.com>2012-08-16 14:30:29 +0400
committerAlan McGovern <alan.mcgovern@gmail.com>2012-08-16 14:30:29 +0400
commit831c839aec0dcef791d533dcac76fe538342ed9d (patch)
tree0c4030c25834a35c08b6bc32fcad74f8c0d689f0 /main/xbuild.include
parent7dead32a532a926b440c545cc9cc95a5e5fc5aa8 (diff)
[build] Print out the exact commandline used to invoke xbuild
It's nice information to have.
Diffstat (limited to 'main/xbuild.include')
-rw-r--r--main/xbuild.include4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/xbuild.include b/main/xbuild.include
index 57dee5bdd1..49e1b36741 100644
--- a/main/xbuild.include
+++ b/main/xbuild.include
@@ -39,11 +39,11 @@ csproj_clean:
sln_build:
@echo Building $(MAIN_SLN)
- @$(XBUILD) $(XBUILD_ARGS) $(MAIN_SLN) $(XBUILD_PROFILE)
+ $(XBUILD) $(XBUILD_ARGS) $(MAIN_SLN) $(XBUILD_PROFILE)
sln_clean:
@echo Cleaning $(MAIN_SLN)
- @$(XBUILD) $(XBUILD_ARGS) $(MAIN_SLN) $(XBUILD_PROFILE) /t:Clean
+ $(XBUILD) $(XBUILD_ARGS) $(MAIN_SLN) $(XBUILD_PROFILE) /t:Clean
print_extradist:
@echo $(WILDCARDED_FILES)