# HG changeset patch # User adb014 # Date 1165261589 0 # Node ID c6584ccbb487d9f93f21afe7591190316d6f5371 # Parent 0c93c151490a56ae3a017b619b38381576dc1055 Ensure that the name from DESCRIPTION has no trailing white space diff -r 0c93c151490a -r c6584ccbb487 admin/make_rpm --- a/admin/make_rpm Mon Dec 04 11:25:37 2006 +0000 +++ b/admin/make_rpm Mon Dec 04 19:46:29 2006 +0000 @@ -188,6 +188,7 @@ close (DESC); # Do the cleanup that is needed $desc{"NAME"} = lc $desc{"NAME"}; # Name must be lower-case + $desc{"NAME"} =~ s/\s*$//; # Name must not have trailing white spaces # There are two special keywords that must be set $desc{"DATE"} = date();