diff options
author | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2008-12-15 02:17:04 +0000 |
---|---|---|
committer | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2008-12-15 02:17:04 +0000 |
commit | 53a0c5f4ce910582f0408dc75ad2613f49f8987a (patch) | |
tree | 888bf93162fa8b283906434ce8a9cdca6d3437f5 /trunk/src/createpkg | |
parent | b460c618df36b51e96fcb42349735f7aa785090c (diff) | |
download | simplepkg-53a0c5f4ce910582f0408dc75ad2613f49f8987a.tar.gz simplepkg-53a0c5f4ce910582f0408dc75ad2613f49f8987a.tar.bz2 |
using 'grep -E' instead of 'egrep'
git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@659 04377dda-e619-0410-9926-eae83683ac58
Diffstat (limited to 'trunk/src/createpkg')
-rw-r--r-- | trunk/src/createpkg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/trunk/src/createpkg b/trunk/src/createpkg index c0cdec8..e8047fc 100644 --- a/trunk/src/createpkg +++ b/trunk/src/createpkg @@ -141,7 +141,7 @@ function solve_dep { # Check package in local system PACK="`echo $PACK | sed -e 's/\+/\\\+/'`" - INSTALLED=`eval "ls /var/log/packages/ | egrep -E '^$PACK-[^-]+-[^-]+-[^-]+$'"` + INSTALLED=`eval "ls /var/log/packages/ | grep -E '^$PACK-[^-]+-[^-]+-[^-]+$'"` CHECK=$? # TODO: Make check version procedures |