svn commit: r199249 - in head/etc: . etc.pc98

Ed Schouten ed at FreeBSD.org
Fri Nov 13 11:26:44 UTC 2009


Author: ed
Date: Fri Nov 13 11:26:44 2009
New Revision: 199249
URL: http://svn.freebsd.org/changeset/base/199249

Log:
  Split up etc.i386/ttys into a PC98 version as well.
  
  This means I can now convert syscons on i386 to xterm as well.
  
  Discussed with:	nyan

Added:
  head/etc/etc.pc98/
     - copied from r199243, head/etc/etc.i386/
Modified:
  head/etc/Makefile

Modified: head/etc/Makefile
==============================================================================
--- head/etc/Makefile	Fri Nov 13 11:19:26 2009	(r199248)
+++ head/etc/Makefile	Fri Nov 13 11:26:44 2009	(r199249)
@@ -18,8 +18,13 @@ BIN1=	auth.conf \
 	rc rc.bsdextended rc.firewall rc.firewall6 rc.initdiskless \
 	rc.sendmail rc.shutdown \
 	rc.subr remote rpc services shells \
-	sysctl.conf syslog.conf \
-	etc.${MACHINE_ARCH}/ttys
+	sysctl.conf syslog.conf
+
+.if exists(${.CURDIR}/etc.${MACHINE}/ttys)
+BIN1+=	etc.${MACHINE}/ttys
+.else
+BIN1+=	etc.${MACHINE_ARCH}/ttys
+.endif
 
 OPENBSMDIR=			${.CURDIR}/../contrib/openbsm
 BSM_ETC_OPEN_FILES=		${OPENBSMDIR}/etc/audit_class \


More information about the svn-src-head mailing list