diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1998-11-17 23:14:15 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1998-11-17 23:14:15 +0000 |
commit | bb43168423cf34015e11cb066e017e5aa633f0a9 (patch) | |
tree | 820cf0023fcd7d2c958565361dee844c809602e3 | |
parent | d2d35f8d205f542cb309f85bb797b4f37ee6252d (diff) |
Move perl install to be after binutils since binutils installs some headers that we may want to convert with h2ph
-rw-r--r-- | gnu/usr.bin/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/usr.bin/Makefile b/gnu/usr.bin/Makefile index f29e0eee994..66064e6c49d 100644 --- a/gnu/usr.bin/Makefile +++ b/gnu/usr.bin/Makefile @@ -1,8 +1,8 @@ -# $OpenBSD: Makefile,v 1.25 1998/06/29 00:09:51 millert Exp $ +# $OpenBSD: Makefile,v 1.26 1998/11/17 23:14:14 millert Exp $ # $NetBSD: Makefile,v 1.35 1996/04/03 21:20:52 chuck Exp $ SUBDIR+= bc cvs deroff diff diff3 gcc grep groff -SUBDIR+= gzip lynx perl rcs sdiff sendbug sudo +SUBDIR+= gzip lynx rcs sdiff sendbug sudo SUBDIR+= binutils # some ports use binutils gas and ld, most do not (yet). @@ -11,7 +11,7 @@ SUBDIR+= binutils SUBDIR+= gas ld .endif -# Do this last, so that it re-builds the info 'dir' file -SUBDIR+= texinfo +# Do these last; texinfo builds the info 'dir' file, perl must be after binutils +SUBDIR+= perl texinfo .include <bsd.subdir.mk> |