distros: remove leading dots in DISTRO_VERSIONs
authorAntonio Ospite <ospite@studenti.unina.it>
Thu, 25 Mar 2010 11:42:12 +0000 (11:42 +0000)
committerStefan Schmidt <stefan@datenfreihafen.org>
Sun, 28 Mar 2010 11:52:41 +0000 (13:52 +0200)
Having a leading dot in DISTRO_VERSION will result in a '-.' string when
building archive names; this may lead to mistakenly think that something is
missing in the archive name.

Example:
minimal-.dev-snapshot-20100216-i686-linux-armv5te-linux-gnueabi-toolchain.tar.bz2
       ^^

Remove the leading dot in DISTRO_VERSIONs to avoid such possible
confusion.

Signed-off-by: Antonio Ospite <ospite@studenti.unina.it>
Acked-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Stefan Schmidt <stefan@datenfreihafen.org>
conf/distro/minimal.conf
conf/distro/oplinux-uclibc.conf
conf/distro/oplinux.conf

index 8e0ae2e..7aa6c58 100644 (file)
@@ -11,7 +11,7 @@
 # NAME and VERSION
 #############################################################################
 DISTRO_NAME ?= "minimal"
-DISTRO_VERSION = ".dev-snapshot-${SRCDATE}"
+DISTRO_VERSION = "dev-snapshot-${SRCDATE}"
 #DISTRO_TYPE = "release"
 DISTRO_TYPE ?= "debug"
 
index b8617cc..480602b 100644 (file)
@@ -21,7 +21,7 @@ require conf/distro/include/sane-srcdates.inc
 # Header
 #
 DISTRO_NAME = "OPLinux-uClibC"
-DISTRO_VERSION = ".dev-snapshot-${SRCDATE}"
+DISTRO_VERSION = "dev-snapshot-${SRCDATE}"
 #DISTRO_TYPE = "release"
 DISTRO_TYPE = "debug"
 
index 43e8fad..b64477c 100644 (file)
@@ -25,7 +25,7 @@ require conf/distro/include/sane-srcdates.inc
 # Header
 #
 DISTRO_NAME = "OPLinux"
-DISTRO_VERSION ?= ".dev-snapshot-${SRCDATE}"
+DISTRO_VERSION ?= "dev-snapshot-${SRCDATE}"
 #DISTRO_TYPE = "release"
 DISTRO_TYPE = "debug"