From: Michael R Sweet Date: Thu, 31 Mar 2022 14:19:24 +0000 (-0400) Subject: Drop version number from INSTALL.md, don't check for it in makesrcdist. X-Git-Tag: v2.4.2~27 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d040d66bd432697c60f3f7ff17b7af8377170825;p=thirdparty%2Fcups.git Drop version number from INSTALL.md, don't check for it in makesrcdist. --- diff --git a/INSTALL.md b/INSTALL.md index ebe52118f8..3ab3972f47 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -1,5 +1,5 @@ -Building and Installing OpenPrinting CUPS v2.4.1 -================================================ +Building and Installing OpenPrinting CUPS +========================================= This file describes how to compile and install CUPS from source code. For more information on CUPS see the file called `README.md`. diff --git a/scripts/makesrcdist b/scripts/makesrcdist index a06130578b..c28ecd1022 100755 --- a/scripts/makesrcdist +++ b/scripts/makesrcdist @@ -65,12 +65,6 @@ else exit 1 fi - temp=`head -1 INSTALL.md | awk '{print $6}'` - if test "$temp" != "v$version"; then - echo "Still need to update version to v$version in INSTALL.md (saw $temp)" - exit 1 - fi - temp=`head -6 CHANGES.md | grep "Changes in" | awk '{print $4}'` if test "$temp" != "v$version"; then echo "Still need to add Changes in v$version in CHANGES.md (saw $temp)"