summaryrefslogtreecommitdiff
path: root/prepare-release
diff options
context:
space:
mode:
authorDaniel Hartwig <mandyke@gmail.com>2015-08-11 19:56:31 +0200
committerDavid Kalnischkies <david@kalnischkies.de>2015-08-12 11:55:47 +0200
commitad42ed4698c88e04bc242fb579f5b3e6fd9a0ee4 (patch)
tree1cf72b388c126122790cb496c68db022f3ca4fee /prepare-release
parent35bf76cf3035761c8721e51250bbeb5f4facf8ee (diff)
replace direct calls to egrep with grep -E
The rest of the initial patch is not needed or incorrect in our usage. Big changes for the dselect scripts seem unneeded as well as those are hardly used by anyone anymore… [commit message written by commiter] Closes: 255577 Thanks: David Weinehall for initial patch
Diffstat (limited to 'prepare-release')
-rwxr-xr-xprepare-release2
1 files changed, 1 insertions, 1 deletions
diff --git a/prepare-release b/prepare-release
index 734dc5f32..91f65028d 100755
--- a/prepare-release
+++ b/prepare-release
@@ -11,7 +11,7 @@ VERSION=$(dpkg-parsechangelog | sed -n -e '/^Version:/s/^Version: //p')
DISTRIBUTION=$(dpkg-parsechangelog | sed -n -e '/^Distribution:/s/^Distribution: //p')
LIBAPTPKGVERSION="$(awk -v ORS='.' '/^\#define APT_PKG_M/ {print $3}' apt-pkg/contrib/macros.h | sed 's/\.$//')"
-LIBAPTINSTVERSION="$(egrep '^MAJOR=' apt-inst/makefile |cut -d '=' -f 2)"
+LIBAPTINSTVERSION="$(grep '^MAJOR=' apt-inst/makefile |cut -d '=' -f 2)"
librarysymbolsfromfile() {
local MISSING="$(grep '^+#MISSING' "$1")"