index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Allan McRae <allan@archlinux.org> | 2011-06-15 21:59:06 +1000 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-06-22 10:46:38 -0500 |
commit | 3497eb4e2c1bf3869176f944ba97c289bebf2e30 (patch) | |
tree | 77a1da9e216b62df1cf89763bd98b5aafa25116c /scripts | |
parent | 508b360c24ddfdb79f66cc14b197988a829b0ecd (diff) |
-rw-r--r-- | scripts/makepkg.sh.in | 4 |
diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index 09eacbb1..53fa1a0c 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -1048,7 +1048,7 @@ write_pkginfo() { # check if the entry has been found by find_libdepends # if not, it's unneeded; tell the user so he can remove it if [[ ! $libdepends =~ (^|\s)${it}=.* ]]; then - error "$(gettext "Can't find library listed in \$depends: %s")" "$it" + error "$(gettext "Cannot find library listed in %s: %s")" "'depends'" "$it" return 1 fi else @@ -1062,7 +1062,7 @@ write_pkginfo() { # check if the entry has been found by find_libprovides # if not, it's unneeded; tell the user so he can remove it if [[ ! $libprovides =~ (^|\s)${it}=.* ]]; then - error "$(gettext "Can't find library listed in \$provides: %s")" "$it" + error "$(gettext "Cannot find library listed in %s: %s")" "'provides'" "$it" return 1 fi else |