From 3a3ec242f1141c69cc865dad281614c67556e2e9 Mon Sep 17 00:00:00 2001 From: Christian Wiese Date: Wed, 10 Aug 2011 13:43:43 +0200 Subject: [PATCH] gzip: fixed compat symlink for uncompress pointing to gunzip and not to ungzip --- archiver/gzip/gzip.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/archiver/gzip/gzip.conf b/archiver/gzip/gzip.conf index 6621c89d3..98ccf8262 100644 --- a/archiver/gzip/gzip.conf +++ b/archiver/gzip/gzip.conf @@ -2,7 +2,7 @@ # This copyright note is auto-generated by ./scripts/Create-CopyPatch. # # 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) 1998 - 2003 Clifford Wolf # @@ -31,5 +31,5 @@ hook_add postmake 5 "pm_move_to_bin" if ! pkginstalled ncompress; then 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/ungzip $root/usr/bin/uncompress" + hook_add postmake 5 "ln -svf /bin/gunzip $root/usr/bin/uncompress" fi