diff options
author | Dan McGee <dan@archlinux.org> | 2007-12-16 22:00:12 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-12-16 22:00:12 -0600 |
commit | 20bad3b839ad3d43d477e80d66df8149d2935ab7 (patch) | |
tree | e96d66ccead5272dde245e29bb45d3958de662d2 | |
parent | f5478d68a67741236a2e9f42f2e524ee1bb26517 (diff) | |
download | pacman-20bad3b839ad3d43d477e80d66df8149d2935ab7.tar.xz |
Set the default packager to "Unknown Packager"
There is no real reason to make it look like someone that can't bother to
set the packager variable is official in any way, so remove the Arch Linux
reference from makepkg.
Signed-off-by: Dan McGee <dan@archlinux.org>
-rw-r--r-- | scripts/makepkg.sh.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index 4d56bc4c..8ec7b347 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -789,7 +789,7 @@ create_package() { if [ "$PACKAGER" != "" ]; then local packager="$PACKAGER" else - local packager="Arch Linux (http://www.archlinux.org)" + local packager="Unknown Packager" fi local size=$(du -sb | awk '{print $1}') |