Commit 1b30d17b authored by Theodore Ts'o's avatar Theodore Ts'o
Browse files

When generating tarballs for Debian builds, remove the hyphen in version

numbers such as "1.36-rc1", since Debian can't deal with version numbers
with '-' characters in them.
parent da83cb6e
2005-01-07 Theodore Ts'o <tytso@mit.edu>
* gen-tarball.in: Remove the hyphen in 1.36-rc1, since Debian
version numbers can't have '-' in them.
2004-11-30 Theodore Ts'o <tytso@mit.edu>
* Makefile.in: Use Linux-kernel-style makefile output to make it
......
......@@ -56,6 +56,10 @@ case $1 in
deb_vers=`echo $base_ver 0.01 - p | dc`
SRCROOT="e2fsprogs-$deb_vers+$base_ver-WIP-$date_spec"
;;
*-rc*)
deb_vers=`echo @E2FSPROGS_VERSION@ | sed -e 's/-rc/rc/'`
SRCROOT="e2fsprogs-$deb_vers"
;;
*-PLUS)
SRCROOT="e2fsprogs-$base_ver+$date_spec"
;;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment