Module: check_mk
Branch: master
Commit: 9274ab8362555e16d220fb4bc7e8b172b3182ae6
URL:
http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=9274ab8362555e…
Author: Mathias Kettner <mk(a)mathias-kettner.de>
Date: Thu Mar 28 11:58:34 2013 +0100
Makefile: fix checks for mingw
---
Makefile | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Makefile b/Makefile
index 7dbce1f..55a333f 100644
--- a/Makefile
+++ b/Makefile
@@ -133,7 +133,7 @@ version:
-o "$$(head -c 12 /etc/issue)" = "Ubuntu 11.04" \
-o "$$(head -c 12 /etc/issue)" = "Ubuntu 11.10" \
-o "$$(head -c 12 /etc/issue)" = "Ubuntu 12.04" \
- -o "$$(head -c 20 /etc/issue)" = "Debian GNU/Linux 6.0" ]
\
+ -o "$$(head -c 12 /etc/issue)" = "Ubuntu 12.10" ] \
|| { echo 'You are not on the reference system!' ; exit 1; }
@newversion=$$(dialog --stdout --inputbox "New Version:" 0 0
"$(VERSION)") ; \
if [ -n "$$newversion" ] ; then $(MAKE) NEW_VERSION=$$newversion setversion ;
fi