Module Name: src Committed By: he Date: Tue Aug 25 14:10:54 UTC 2009
Modified Files: src/sys/lib/libsa: Makefile Log Message: Uh, move loadfile_aout.c in under the check for ${SA_USE_LOADFILE} again, so that it's not unconditionally compiled, fixing the previous. To generate a diff of this commit: cvs rdiff -u -r1.69 -r1.70 src/sys/lib/libsa/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/lib/libsa/Makefile diff -u src/sys/lib/libsa/Makefile:1.69 src/sys/lib/libsa/Makefile:1.70 --- src/sys/lib/libsa/Makefile:1.69 Fri Aug 21 21:12:02 2009 +++ src/sys/lib/libsa/Makefile Tue Aug 25 14:10:54 2009 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.69 2009/08/21 21:12:02 he Exp $ +# $NetBSD: Makefile,v 1.70 2009/08/25 14:10:54 he Exp $ LIB= sa NOPIC= # defined @@ -29,7 +29,7 @@ subr_prf.c twiddle.c vsprintf.c checkpasswd.c .if (${MACHINE_CPU} != "mips") -SRCS+= exec.c loadfile_aout.c +SRCS+= exec.c .endif # string routines @@ -47,6 +47,9 @@ .if (${SA_USE_LOADFILE} == "yes") SRCS+= loadfile.c loadfile_ecoff.c loadfile_elf32.c \ loadfile_elf64.c +.if (${MACHINE_CPU} != "mips") +SRCS+= loadfile_aout.c +.endif .endif .if (${SA_INCLUDE_NET} == "yes")