diff options
author | jhay <jhay@FreeBSD.org> | 1998-06-01 18:34:19 +0000 |
---|---|---|
committer | jhay <jhay@FreeBSD.org> | 1998-06-01 18:34:19 +0000 |
commit | 39c5e7fee1c0e3b57b3ddac46795b97a9e4d445e (patch) | |
tree | 6fe04406608d66dd7c2d85a540e3b6bee55e516a | |
parent | c1db59662a8c7a4dd68388d70100471457aa29b4 (diff) | |
download | FreeBSD-src-39c5e7fee1c0e3b57b3ddac46795b97a9e4d445e.zip FreeBSD-src-39c5e7fee1c0e3b57b3ddac46795b97a9e4d445e.tar.gz |
Look for kzhead.o and kztail.o in /usr/lib/aout.
-rw-r--r-- | usr.bin/kzip/kzip.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/kzip/kzip.c b/usr.bin/kzip/kzip.c index 3bc3e0f..053ae50 100644 --- a/usr.bin/kzip/kzip.c +++ b/usr.bin/kzip/kzip.c @@ -13,7 +13,7 @@ #ifndef lint static const char rcsid[] = - "$Id$"; + "$Id: kzip.c,v 1.10 1997/07/18 06:40:46 charnier Exp $"; #endif /* not lint */ #include <err.h> @@ -200,9 +200,9 @@ main(int argc, char **argv) base, "-o", out, - "/usr/lib/kzhead.o", + "/usr/lib/aout/kzhead.o", obj, - "/usr/lib/kztail.o", + "/usr/lib/aout/kztail.o", 0); exit(2); } |