From: Panu Matilainen Date: Tue, 5 Jun 2007 12:16:37 +0000 (+0300) Subject: Fix typo in check-prereq (rhbz#203182) by Steve Grubb. X-Git-Tag: tznext/4.11.0.1.tizen20130304~5970 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7ca13025364fd3320d658e8220346f2eb7e0a55e;p=tools%2Flibrpm-tizen.git Fix typo in check-prereq (rhbz#203182) by Steve Grubb. --- diff --git a/scripts/check-prereqs b/scripts/check-prereqs index a7dc4a6..e6c9452 100755 --- a/scripts/check-prereqs +++ b/scripts/check-prereqs @@ -5,7 +5,7 @@ bashit="/bin/bash --rpm-requires" # Make sure that this bash has the rpm-requires hack $bashit < /dev/null 2>&1 > /dev/null || exit $? -prereqs="`cat | $bashit | sort | uniq | sed -e 's/^bash(//' -e 's/)$//'`" -e 's/^executable(//' -e 's/)$//'`" +prereqs="`cat | $bashit | sort | uniq | sed -e 's/^bash(//' -e 's/)$//' -e 's/^executable(//' -e 's/)$//'`" [ -z "$prereqs" ] && exit 0 for prereq in $prereqs