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:
authorJo Shields <joshield@microsoft.com>2018-04-27 00:20:01 +0300
committerMarius Ungureanu <teromario@yahoo.com>2018-05-10 12:32:35 +0300
commite192ed38e118cd2c2286abffaa4dac8a1e320405 (patch)
treeaf317d4492efb79b349faf23f1c04fd642ac5aa5 /Makefile
parentb64a7ae1aacb9189825eba4ab1383df8cddf78e2 (diff)
Always regenerate BuildVariables.cs in `make dist`
It's not regenerated ordinarily, causing `make dist` to include a "wrong" file if switching branches. Fixes occasional accidental bad Help/About versions
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 951c0f629a..fb0d0f5169 100644
--- a/Makefile
+++ b/Makefile
@@ -75,7 +75,10 @@ distclean: distclean-recursive
remove-stale-tarballs:
rm -rf tarballs
-dist: update_submodules remove-stale-tarballs dist-recursive
+remove-stale-buildinfo:
+ rm -f main/src/core/MonoDevelop.Core/BuildVariables.cs
+
+dist: update_submodules remove-stale-tarballs remove-stale-buildinfo dist-recursive
mkdir -p tarballs
for t in $(SUBDIRS); do \
if test -e $$t/*.tar.gz; then \