diff options
author | Andrew Fyfe <andrew@neptune-one.net> | 2007-06-01 20:55:53 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-06-02 19:44:54 +0200 |
commit | afd2adf1f3b4a37798fccb26f92f711c4b545151 (patch) | |
tree | 59e46c2bc463658d44e5be9616d1a48b7656984e /scripts/makepkg.in | |
parent | ed13ac2cc8dd15d8a19d769cc77941ad18ac1a7c (diff) | |
download | pacman-afd2adf1f3b4a37798fccb26f92f711c4b545151.tar.gz pacman-afd2adf1f3b4a37798fccb26f92f711c4b545151.tar.xz |
scripts/makepkg.in: All calls to eval_gettext have been remove, gettext.sh is no longer needed.
Signed-off-by: Andrew Fyfe <andrew@neptune-one.net>
Diffstat (limited to 'scripts/makepkg.in')
-rw-r--r-- | scripts/makepkg.in | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/makepkg.in b/scripts/makepkg.in index 5f14b52d..14bcfb45 100644 --- a/scripts/makepkg.in +++ b/scripts/makepkg.in @@ -27,7 +27,6 @@ # # gettext initialization -source gettext.sh export TEXTDOMAIN='pacman' export TEXTDOMAINDIR='@localedir@' @@ -850,7 +849,7 @@ if [ "$CLEANCACHE" = "1" ]; then fi if [ -z $BUILDSCRIPT ]; then - error "$(eval_gettext "BUILDSCRIPT is undefined! Ensure you have updated makepkg.conf.")" + error "$(gettext "BUILDSCRIPT is undefined! Ensure you have updated makepkg.conf.")" exit 1 fi |