diff options
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/testdisk/testdisk-7.1-r1.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app-admin/testdisk/testdisk-7.1-r1.ebuild b/app-admin/testdisk/testdisk-7.1-r1.ebuild index 2532bfd25503..6ac500bd0a2a 100644 --- a/app-admin/testdisk/testdisk-7.1-r1.ebuild +++ b/app-admin/testdisk/testdisk-7.1-r1.ebuild @@ -73,13 +73,13 @@ src_configure() { econf "${myconf[@]}" # perform safety checks for NTFS, REISERFS and JPEG - if use ntfs && ! egrep -q '^#define HAVE_LIBNTFS(3G)? 1$' "${S}"/config.h ; then + if use ntfs && ! grep -E -q '^#define HAVE_LIBNTFS(3G)? 1$' "${S}"/config.h ; then die "Failed to find either NTFS or NTFS-3G library." fi - if use reiserfs && egrep -q 'undef HAVE_LIBREISERFS\>' "${S}"/config.h ; then + if use reiserfs && grep -E -q 'undef HAVE_LIBREISERFS\>' "${S}"/config.h ; then die "Failed to find reiserfs library." fi - if use jpeg && egrep -q 'undef HAVE_LIBJPEG\>' "${S}"/config.h ; then + if use jpeg && grep -E -q 'undef HAVE_LIBJPEG\>' "${S}"/config.h ; then die "Failed to find jpeg library." fi } |