Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.bin/xinstall Don't assume HAVE_POSIX_SPAWN when building...



details:   https://anonhg.NetBSD.org/src/rev/507a624a9ef6
branches:  trunk
changeset: 340926:507a624a9ef6
user:      dholland <dholland%NetBSD.org@localhost>
date:      Sat Oct 10 22:54:03 2015 +0000

description:
Don't assume HAVE_POSIX_SPAWN when building a host prog. From Joachim
Kuebart in PR 50301. needs pullup-7

diffstat:

 usr.bin/xinstall/Makefile |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (20 lines):

diff -r 37abc96d8cf0 -r 507a624a9ef6 usr.bin/xinstall/Makefile
--- a/usr.bin/xinstall/Makefile Sat Oct 10 22:51:05 2015 +0000
+++ b/usr.bin/xinstall/Makefile Sat Oct 10 22:54:03 2015 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.25 2015/06/17 15:34:08 christos Exp $
+#      $NetBSD: Makefile,v 1.26 2015/10/10 22:54:03 dholland Exp $
 #      @(#)Makefile    8.1 (Berkeley) 6/6/93
 
 .include <bsd.own.mk>
@@ -12,9 +12,9 @@
 
 .PATH:         ${NETBSDSRCDIR}/usr.sbin/mtree
 CPPFLAGS+=     -I${NETBSDSRCDIR}/usr.sbin/mtree
-CPPFLAGS+=     -DHAVE_POSIX_SPAWN
 
 .if (${HOSTPROG:U} == "")
+CPPFLAGS+=     -DHAVE_POSIX_SPAWN
 DPADD+= ${LIBUTIL}
 LDADD+= -lutil
 .endif



Home | Main Index | Thread Index | Old Index