Make this work with any amount of tabulations between the = and the value of PORTREVISION.

Sponsored by:	Absolight
This commit is contained in:
Mathieu Arnold 2014-11-18 16:26:09 +00:00
parent d7717af63b
commit 9a22293c2e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=372729

View File

@ -59,7 +59,7 @@ do
# 1, bail out and complain.
# The proper fix is to do a stricter check that PORTREVISION
# is an integer.
awk -F "\t" '/^PORTREVISION\??=/{ rplc = gsub ($2,$2+1); if (rplc != 1) { exit 1 } };{ print }' "$1/Makefile" > $tempfile \
awk -F "\t+" '/^PORTREVISION\??=/{ rplc = gsub ($2,$2+1); if (rplc != 1) { exit 1 } };{ print }' "$1/Makefile" > $tempfile \
&& { cat $tempfile > "$1/Makefile" ; printc "$1: $revision found, bumping it by 1." "green" ; } \
|| printc "$1: FAILED TO BUMP PORTREVISION" red
;;