[pacman-dev] [PATCH] makepkg: fix typo (misssing quotes)
Signed-off-by: Rémy Oudompheng <remy@archlinux.org> --- scripts/makepkg.sh.in | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index ed5cdef..3ee9063 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -1562,7 +1562,7 @@ devel_check() { newpkgver=$(date +%Y%m%d) elif [[ -n ${_gitroot} && -n ${_gitname} ]] ; then if ! type -p git >/dev/null; then - warning "$(gettext "Cannot find the %s binary required to determine latest %s revision.")" "git "git" + warning "$(gettext "Cannot find the %s binary required to determine latest %s revision.")" "git" "git" return 0 fi msg "$(gettext "Determining latest %s revision...")" 'git' @@ -1576,7 +1576,7 @@ devel_check() { newpkgver=$(LC_ALL=C svn info $_svntrunk | sed -n 's/^Last Changed Rev: \([0-9]*\)$/\1/p') elif [[ -n ${_bzrtrunk} && -n ${_bzrmod} ]] ; then if ! type -p bzr >/dev/null; then - warning "$(gettext "Cannot find the %s binary required to determine latest %s revision.")" "bzr" bzr" + warning "$(gettext "Cannot find the %s binary required to determine latest %s revision.")" "bzr" "bzr" return 0 fi msg "$(gettext "Determining latest %s revision...")" 'bzr' -- 1.7.6
typo ^ (misssing) On 28/06/11 16:22, =?UTF-8?q?R=C3=A9my=20Oudompheng?= wrote:
Signed-off-by: Rémy Oudompheng<remy@archlinux.org>
Signed-off-by: Allan. On my working branch with typo fixed.
On Tue, Jun 28, 2011 at 7:49 AM, Allan McRae <allan@archlinux.org> wrote:
typo ^ (misssing)
On 28/06/11 16:22, =?UTF-8?q?R=C3=A9my=20Oudompheng?= wrote:
Signed-off-by: Rémy Oudompheng<remy@archlinux.org>
Signed-off-by: Allan.
On my working branch with typo fixed.
I fixed the Author name too; I have no idea how it ended up getting so mangled but it needs adjusting. git commit --amend --author "Rémy Oudompheng <remy@archlinux.org>" -Dan
participants (3)
-
Allan McRae
-
Dan McGee
-
Rémy Oudompheng