diff options
author | Jan Steffens <jan.steffens@gmail.com> | 2011-03-13 18:01:20 +0100 |
---|---|---|
committer | Jan Steffens <jan.steffens@gmail.com> | 2011-03-14 02:31:26 +0100 |
commit | ba7cc139c40d77d4f9c60802313d0b5018ca44bd (patch) | |
tree | 599bc99904a58b0fbc3a144ad4e4a326d0ea4d65 | |
parent | 3491ea5d799479c9ae0da2c2864084146d61a10a (diff) | |
download | devtools32-ba7cc139c40d77d4f9c60802313d0b5018ca44bd.tar.xz |
Fix spelling
-rwxr-xr-x | finddeps | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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)" |