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:
-rw-r--r--ChangeLog5
-rw-r--r--Makefile9
-rwxr-xr-xconfigure2
3 files changed, 12 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 5e491ab483..bc65411e0e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2009-02-03 Michael Hutchinson <mhutchinson@novell.com>
+
+ * Makefile: Re-run configure when it changes.
+ * configure: Update version number.
+
2009-01-26 Michael Hutchinson <mhutchinson@novell.com>
* Makefile: Add distclean target.
diff --git a/Makefile b/Makefile
index f593befb9c..edd6a7fe29 100644
--- a/Makefile
+++ b/Makefile
@@ -20,9 +20,12 @@ CONFIG_MAKE=$(top_srcdir)/config.make
done
$$final_exit
-$(CONFIG_MAKE):
- @echo "You must run configure first"
- @exit 1
+$(CONFIG_MAKE): $(top_srcdir)/configure
+ @if test -e "$(CONFIG_MAKE)"; then exec $(top_srcdir)/configure; \
+ else \
+ echo "You must run configure first"; \
+ exit 1; \
+ fi
clean: clean-recursive
install: install-recursive
diff --git a/configure b/configure
index 17cb77d96d..e80f1b768e 100755
--- a/configure
+++ b/configure
@@ -1,5 +1,5 @@
#!/bin/bash
-VERSION=0.17
+VERSION=1.9.2
profile=default
prefix=NONE