Browse Source

gzip: fixed compat symlink for uncompress pointing to gunzip and not to ungzip

stable/0.2
Christian Wiese 14 years ago committed by Christian Wiese
parent
commit
3a3ec242f1
  1. 4
      archiver/gzip/gzip.conf

4
archiver/gzip/gzip.conf

@ -2,7 +2,7 @@
# This copyright note is auto-generated by ./scripts/Create-CopyPatch. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
# #
# Filename: package/.../gzip/gzip.conf # Filename: package/.../gzip/gzip.conf
# Copyright (C) 2006 - 2007 The OpenSDE Project # Copyright (C) 2006 - 2011 The OpenSDE Project
# Copyright (C) 2004 - 2006 The T2 SDE Project # Copyright (C) 2004 - 2006 The T2 SDE Project
# Copyright (C) 1998 - 2003 Clifford Wolf # Copyright (C) 1998 - 2003 Clifford Wolf
# #
@ -31,5 +31,5 @@ hook_add postmake 5 "pm_move_to_bin"
if ! pkginstalled ncompress; then if ! pkginstalled ncompress; then
echo_warning "ncompress not found, creating compress and uncompress symlinks." echo_warning "ncompress not found, creating compress and uncompress symlinks."
hook_add postmake 5 "ln -svf /bin/gzip $root/usr/bin/compress" hook_add postmake 5 "ln -svf /bin/gzip $root/usr/bin/compress"
hook_add postmake 5 "ln -svf /bin/ungzip $root/usr/bin/uncompress" hook_add postmake 5 "ln -svf /bin/gunzip $root/usr/bin/uncompress"
fi fi

Loading…
Cancel
Save