Module: ngircd.git
Branch: master
Commit: 60137a7139cbeb40bb75fa40148c01715436aad5
URL: http://ngircd.barton.de/cgi-bin/gitweb.cgi?p=ngircd.git&a=commit;h=60137a71…
Author: Alexander Barton <alex(a)barton.de>
Date: Wed Dec 2 22:22:35 2009 +0100
Added i686/unknown/kfreebsd7.2-gnu
---
doc/Platforms.txt | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/doc/Platforms.txt b/doc/Platforms.txt
index 8a1282e..85b3afa 100644
--- a/doc/Platforms.txt
+++ b/doc/Platforms.txt
@@ -43,6 +43,7 @@ i386/unknown/freebsd7.0 gcc 4.2.1 14.1 09-07-28 alex Y Y Y Y (3)
i386/unknown/freebsd7.2 gcc 4.2.1 14.1 09-08-03 alex Y Y Y Y (3)
i386/unknown/gnu0.3 gcc 3.3.3 0.8.0 04-05-30 alex Y Y n Y
i686/unknown/gnu0.3 gcc 4.3.1 14.1 09-07-28 alex Y Y Y Y
+i686/unkn./kfreebsd7.2-gnu gcc 4.3.4 15 09-12-02 alex Y Y Y Y (3)
i386/unknown/netbsdelf1.6.1 gcc 2.95.3 CVSHEAD 04-02-24 alex Y Y Y Y
i386/unknown/netbsdelf3.0.1 gcc 3.3.3 0.10.0-p1 06-08-30 alex Y Y Y Y (3)
i386/unknown/netbsdelf4.0 gcc 4.1.2 14.1 09-07-28 alex Y Y Y Y (3)
Module: ngircd.git
Branch: master
Commit: 513a75c9195f480b25a6bbd605a00ef066636211
URL: http://ngircd.barton.de/cgi-bin/gitweb.cgi?p=ngircd.git&a=commit;h=513a75c9…
Author: Alexander Barton <alex(a)barton.de>
Date: Sun Nov 15 18:25:36 2009 +0100
platformtest.sh: Only show latest commit
Only show latest GIT commuit ID as version number,
even when the last commit has been a merge.
---
contrib/platformtest.sh | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/contrib/platformtest.sh b/contrib/platformtest.sh
index aee7f29..0a518b8 100755
--- a/contrib/platformtest.sh
+++ b/contrib/platformtest.sh
@@ -105,7 +105,7 @@ fi
# Get ngIRCd version information
if [ -d ".git" ]; then
VERSION=`git log --abbrev-commit --pretty=oneline HEAD~1.. \
- | cut -d' ' -f1 | tr -d '.'`
+ | head -1 | cut -d' ' -f1 | tr -d '.'`
elif [ -r "Makefile" ]; then
eval $(grep "^VERSION = " Makefile | sed -e 's/ //g')
fi