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:
authorAlex Rønne Petersen <alex@lycus.org>2014-06-14 10:47:44 +0400
committerAlex Rønne Petersen <alex@lycus.org>2014-06-14 10:47:44 +0400
commitde820bd99da4c57ed09cf74d938f27532ae00ea1 (patch)
tree9347bbde73ddde4a6ebafd65b6a5478c5e080d35 /main/Makefile.am
parent9afaf85682f57d1ce3db3a99a852138e8bfedd31 (diff)
[main] Don't silence the invocation of configure.exe to generate buildinfo.
Diffstat (limited to 'main/Makefile.am')
-rw-r--r--main/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/Makefile.am b/main/Makefile.am
index 5f36eb9c41..2460149711 100644
--- a/main/Makefile.am
+++ b/main/Makefile.am
@@ -26,7 +26,7 @@ $(buildinfo):
@mkdir -p "$(top_builddir)/build/bin"
# in a tarball, there is a generated buildinfo, which needs to be copied to the right place
# otherwise, the file buildinfo will be generated based on git revision etc.
- @if test -f "$(top_srcdir)/buildinfo"; then cp "$(top_srcdir)/buildinfo" "$(top_builddir)/build/bin/buildinfo"; else $(MD_CONFIGURE) gen-buildinfo "$(top_builddir)/build/bin"; fi
+ if test -f "$(top_srcdir)/buildinfo"; then cp "$(top_srcdir)/buildinfo" "$(top_builddir)/build/bin/buildinfo"; else $(MD_CONFIGURE) gen-buildinfo "$(top_builddir)/build/bin"; fi
@echo "Updated build information"
@cat $(buildinfo)