index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
-rw-r--r-- | scripts/repo-add.sh.in | 7 |
diff --git a/scripts/repo-add.sh.in b/scripts/repo-add.sh.in index efd3bc03..63d94d37 100644 --- a/scripts/repo-add.sh.in +++ b/scripts/repo-add.sh.in @@ -252,6 +252,13 @@ db_write_entry() # PROGRAM START +# determine whether we have gettext; make it a no-op if we do not +if [ ! $(type -t gettext) ]; then + gettext() { + echo "$@" + } +fi + # check for help flags if [ "$1" = "-h" -o "$1" = "--help" ]; then usage |