=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/make/arch.c,v retrieving revision 1.48 retrieving revision 1.49 diff -c -r1.48 -r1.49 *** src/usr.bin/make/arch.c 2001/06/05 11:59:10 1.48 --- src/usr.bin/make/arch.c 2001/06/07 13:53:22 1.49 *************** *** 1,5 **** /* $OpenPackages$ */ ! /* $OpenBSD: arch.c,v 1.48 2001/06/05 11:59:10 espie Exp $ */ /* $NetBSD: arch.c,v 1.17 1996/11/06 17:58:59 christos Exp $ */ /* --- 1,5 ---- /* $OpenPackages$ */ ! /* $OpenBSD: arch.c,v 1.49 2001/06/07 13:53:22 espie Exp $ */ /* $NetBSD: arch.c,v 1.17 1996/11/06 17:58:59 christos Exp $ */ /* *************** *** 901,915 **** /*ARGSUSED*/ void Arch_TouchLib(gn) ! GNode *gn; /* The node of the library to touch */ { #ifdef RANLIBMAG if (gn->path != NULL) { ArchTouch(gn->path, RANLIBMAG); set_times(gn->path); } - #else - gn = gn; #endif } --- 901,914 ---- /*ARGSUSED*/ void Arch_TouchLib(gn) ! GNode *gn UNUSED; /* The node of the library to touch */ ! /* ^ Non RANLIBMAG does nothing with it */ { #ifdef RANLIBMAG if (gn->path != NULL) { ArchTouch(gn->path, RANLIBMAG); set_times(gn->path); } #endif }