From: Harlan Stenn Date: Sat, 17 Jun 2006 17:47:07 +0000 (-0400) Subject: Deal with -stable rcpoint X-Git-Tag: NTP_4_2_2P0_RC2~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1adcf17e8a0ca67d7461b87a6f5d365a1c99468b;p=thirdparty%2Fntp.git Deal with -stable rcpoint bk: 4494401bByrzxRJadGUxJdv6l7Bxlg --- diff --git a/packageinfo.sh b/packageinfo.sh index 3420895e8..7f734dfb8 100644 --- a/packageinfo.sh +++ b/packageinfo.sh @@ -1,3 +1,4 @@ +repotype=stable # version=Protocol.Major.Minor # odd minor numbers are for -dev, even minor numbers are for -stable proto=4 diff --git a/scripts/VersionName b/scripts/VersionName index 3ec023d02..f601cc348 100755 --- a/scripts/VersionName +++ b/scripts/VersionName @@ -28,4 +28,14 @@ case $releasecandidate in ;; esac +case $repotype in + stable) + case $rcpoint in + [0-9]*) + NAME="${NAME}$rcpoint" + ;; + esac + ;; +esac + echo "$NAME"