index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Dan McGee <dan@archlinux.org> | 2008-02-17 21:15:06 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2008-02-17 21:25:41 -0600 |
commit | 355930654693b416725e170ad0cb14d0251626e4 (patch) | |
tree | 8981df01d6518eb67f6e359e399b9b9465bf5e74 /scripts/makepkg.sh.in | |
parent | 2374c81e55abc0f7252fad7eb53d2b75bb33f750 (diff) |
-rw-r--r-- | scripts/makepkg.sh.in | 9 |
diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index 090ba5df..ed4794f0 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -1107,6 +1107,15 @@ This is free software; see the source for copying conditions.\n\ There is NO WARRANTY, to the extent permitted by law.\n")" } +# PROGRAM START + +# determine whether we have gettext; make it a no-op if we do not +if [ ! $(type -t gettext) ]; then + gettext() { + echo "$@" + } +fi + ARGLIST=$@ #preserve environment variables |