summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Steffens <jan.steffens@gmail.com>2011-03-13 18:01:20 +0100
committerJan Steffens <jan.steffens@gmail.com>2011-03-14 02:31:26 +0100
commitba7cc139c40d77d4f9c60802313d0b5018ca44bd (patch)
tree599bc99904a58b0fbc3a144ad4e4a326d0ea4d65
parent3491ea5d799479c9ae0da2c2864084146d61a10a (diff)
downloaddevtools-ba7cc139c40d77d4f9c60802313d0b5018ca44bd.tar.gz
devtools-ba7cc139c40d77d4f9c60802313d0b5018ca44bd.tar.xz
Fix spelling
-rwxr-xr-xfinddeps4
1 files changed, 2 insertions, 2 deletions
diff --git a/finddeps b/finddeps
index c47518a..5f1a808 100755
--- a/finddeps
+++ b/finddeps
@@ -21,14 +21,14 @@ for d in $(find . -type d); do
unset pkgname depends makedepends
. PKGBUILD
for dep in "${depends[@]}"; do
- # lose the version comaparator, if any
+ # lose the version comparator, if any
depname=${dep%%[<>=]*}
if [ "$depname" = "$match" ]; then
echo "$d (depends)"
fi
done
for dep in "${makedepends[@]}"; do
- # lose the version comaparator, if any
+ # lose the version comparator, if any
depname=${dep%%[<>=]*}
if [ "$depname" = "$match" ]; then
echo "$d (makedepends)"