We don't need CMP anymore.

Native Irix ln doesn't know about -n
This commit is contained in:
Tom G. Christensen 2004-07-21 20:10:55 +00:00
parent 410760a6d3
commit 59657a656e

View File

@ -53,7 +53,6 @@ MV=/usr/bin/mv
MKDIR=/usr/bin/mkdir
CP=/usr/bin/cp
TEE=/bin/tee
CMP=/bin/cmp
GREP=/bin/grep
UNIQ=/bin/uniq
BASENAME=/bin/basename
@ -364,7 +363,7 @@ fix_man()
do
if [ -L "$manpage" ]; then
TARGET=$($LS -l "$manpage" | $AWK '{ print $NF }')
$LN -snf "$TARGET".gz "$manpage".gz
$LN -sf "$TARGET".gz "$manpage".gz
$MV "$manpage".gz "../$catdir"
$RM -f "$manpage"
else