diff options
author | bde <bde@FreeBSD.org> | 1998-07-29 13:43:06 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-07-29 13:43:06 +0000 |
commit | de10182213e638313c1a58e5dbb43f76672dab76 (patch) | |
tree | 8bd9528d6341e0e182eaab47775a71d75c1e6270 | |
parent | 12ec611ec6ad9af841215b368ec1c5212a2bef71 (diff) | |
download | FreeBSD-src-de10182213e638313c1a58e5dbb43f76672dab76.zip FreeBSD-src-de10182213e638313c1a58e5dbb43f76672dab76.tar.gz |
Fixed disordering in previous commit.
-rw-r--r-- | lib/libc/amd64/sys/Makefile.inc | 8 | ||||
-rw-r--r-- | lib/libc/i386/sys/Makefile.inc | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/lib/libc/amd64/sys/Makefile.inc b/lib/libc/amd64/sys/Makefile.inc index 2e3db4f..9446251 100644 --- a/lib/libc/amd64/sys/Makefile.inc +++ b/lib/libc/amd64/sys/Makefile.inc @@ -1,7 +1,7 @@ # from: Makefile.inc,v 1.1 1993/09/03 19:04:23 jtc Exp -# $Id: Makefile.inc,v 1.10 1998/04/30 10:02:44 jb Exp $ +# $Id: Makefile.inc,v 1.11 1998/07/28 03:33:17 jlemon Exp $ -SRCS+= i386_get_ldt.c i386_set_ldt.c i386_get_ioperm.c i386_set_ioperm.c \ +SRCS+= i386_get_ioperm.c i386_get_ldt.c i386_set_ioperm.c i386_set_ldt.c \ i386_vm86.c MDASM= Ovfork.S brk.S cerror.S exect.S fork.S pipe.S \ @@ -22,8 +22,8 @@ PSEUDO= _getlogin.o PSEUDOR= _exit.o .if ${LIB} == "c" -MAN2+= i386_get_ldt.2 i386_get_ioperm.2 i386_vm86.2 +MAN2+= i386_get_ioperm.2 i386_get_ldt.2 i386_vm86.2 -MLINKS+=i386_get_ldt.2 i386_set_ldt.2 MLINKS+=i386_get_ioperm.2 i386_set_ioperm.2 +MLINKS+=i386_get_ldt.2 i386_set_ldt.2 .endif diff --git a/lib/libc/i386/sys/Makefile.inc b/lib/libc/i386/sys/Makefile.inc index 2e3db4f..9446251 100644 --- a/lib/libc/i386/sys/Makefile.inc +++ b/lib/libc/i386/sys/Makefile.inc @@ -1,7 +1,7 @@ # from: Makefile.inc,v 1.1 1993/09/03 19:04:23 jtc Exp -# $Id: Makefile.inc,v 1.10 1998/04/30 10:02:44 jb Exp $ +# $Id: Makefile.inc,v 1.11 1998/07/28 03:33:17 jlemon Exp $ -SRCS+= i386_get_ldt.c i386_set_ldt.c i386_get_ioperm.c i386_set_ioperm.c \ +SRCS+= i386_get_ioperm.c i386_get_ldt.c i386_set_ioperm.c i386_set_ldt.c \ i386_vm86.c MDASM= Ovfork.S brk.S cerror.S exect.S fork.S pipe.S \ @@ -22,8 +22,8 @@ PSEUDO= _getlogin.o PSEUDOR= _exit.o .if ${LIB} == "c" -MAN2+= i386_get_ldt.2 i386_get_ioperm.2 i386_vm86.2 +MAN2+= i386_get_ioperm.2 i386_get_ldt.2 i386_vm86.2 -MLINKS+=i386_get_ldt.2 i386_set_ldt.2 MLINKS+=i386_get_ioperm.2 i386_set_ioperm.2 +MLINKS+=i386_get_ldt.2 i386_set_ldt.2 .endif |