From 80376953b74ea42c9a06314294e676e0e872a31e Mon Sep 17 00:00:00 2001 From: mazen Date: Tue, 6 Mar 2012 09:19:46 +0000 Subject: [PATCH] MAKE DEB: use grep instead of egrep in debian/rules git-svn-id: trunk@35758 - --- debian/rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/rules b/debian/rules index 8a5eda03bc..cb8b189894 100755 --- a/debian/rules +++ b/debian/rules @@ -24,7 +24,7 @@ FPCVER=$(shell ${FPC} -iV) FPCTARGET=$(CPU_TARGET)-linux # Get version information from changelog file -DEB_VERSION:=$(shell dpkg-parsechangelog | egrep '^Version:' | cut -f 2 -d ' ') +DEB_VERSION:=$(shell dpkg-parsechangelog | grep '^Version:' | cut -f 2 -d ' ') DEB_UPSTREAM_VERSION:=$(shell echo $(DEB_VERSION) | cut -f 1 -d -) DEB_UPSTREAM_MAIN_VERSION:=$(shell echo ${DEB_UPSTREAM_VERSION} | sed -e 's/^\([0-9\.]*\).*/\1/') DEB_BUILD=$(lastword $(subst -, ,${DEB_VERSION}))