diff options
author | Lukas Fleischer <archlinux@cryptocrack.de> | 2011-12-06 22:29:32 +0100 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-12-07 16:59:30 +0100 |
commit | 1038e669649dae98c1cf9c354e680c62cf25638c (patch) | |
tree | 8088a11caace799fdb96040d39fe56abf3e5f55e /contrib/paclog-pkglist.in | |
parent | 48188fbeee8bc39977bc2a0200dc5fb538db9ff1 (diff) | |
download | pacman-1038e669649dae98c1cf9c354e680c62cf25638c.tar.gz pacman-1038e669649dae98c1cf9c354e680c62cf25638c.tar.xz |
contrib/*: Hardcode program names
Add a read-only variable "$myname" to every contrib script and hardcode
program names instead of relying on "$0". The variable name "$myname"
was chosen because it is already used in pacman and because we use
"$myver" to specify the program version in the official scripts.
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'contrib/paclog-pkglist.in')
-rwxr-xr-x | contrib/paclog-pkglist.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/contrib/paclog-pkglist.in b/contrib/paclog-pkglist.in index 27dfd302..0b27bf36 100755 --- a/contrib/paclog-pkglist.in +++ b/contrib/paclog-pkglist.in @@ -17,14 +17,16 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. +declare -r myname='paclog-pkglist' + export TEXTDOMAIN='pacman' export TEXTDOMAINDIR='/usr/share/locale' declare logfile=${1:-@localstatedir@/log/pacman.log} if [[ $1 ]]; then if [[ $1 = -@(h|-help) ]]; then - printf 'usage: %s [pacman log]\n' "${0##*/}" - printf 'example: %s @localstatedir@/log/pacman.log\n' "${0##*/}" + printf 'usage: %s [pacman log]\n' "$myname" + printf 'example: %s @localstatedir@/log/pacman.log\n' "$myname" printf '\ndefaults to: @localstatedir@/log/pacman.log\n' exit 0 elif [[ ! -e $logfile ]]; then |