summary refs log tree commit diff
path: root/Makefile.am
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2010-10-26 15:09:01 +0200
committerAlexander Barton <alex@barton.de>2010-10-26 15:09:01 +0200
commita4de27deee264714099c652cb87b3b8519cbb739 (patch)
treee794defc028a71e6a08924ccda13ee192a4cb09f /Makefile.am
parent8449e082455fc69c5a062c4cfeb1b1ad9aca437c (diff)
downloadngircd-a4de27deee264714099c652cb87b3b8519cbb739.tar.gz
ngircd-a4de27deee264714099c652cb87b3b8519cbb739.zip
Xcode builds ("make xcode"): detect version number correctly
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am
index bea1cfc1..e1d8d607 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,6 +1,6 @@
 #
 # ngIRCd -- The Next Generation IRC Daemon
-# Copyright (c)2001-2008 Alexander Barton (alex@barton.de)
+# Copyright (c)2001-2010 Alexander Barton (alex@barton.de)
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -38,7 +38,7 @@ have-xcodebuild:
 	 || ( echo; echo "Error: \"xcodebuild\" not found!"; echo; exit 1 )
 
 xcode: have-xcodebuild
-	rel=`grep AC_INIT configure.in | cut -d' ' -f2 | cut -d')' -f1`; \
+	rel=`git describe|sed -e 's/rel-//g'|sed -e 's/-/~/'`; \
 	 def="GCC_PREPROCESSOR_DEFINITIONS=\"VERSION=\\\"$$rel\\\"\""; \
 	 xcodebuild -project contrib/MacOSX/ngIRCd.xcodeproj -alltargets \
 	 -configuration Default $$def build