Don't invoke join(1) with POSIX syntax on MacOS X 10.3.9. This fixes
cross-building on the aforementioned platform.
This commit is contained in:
parent
37ee0e11e5
commit
dc7b6798f1
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile,v 1.6 2002/12/08 20:20:01 thorpej Exp $
|
||||
# $NetBSD: Makefile,v 1.7 2007/01/09 17:49:56 ginsbach Exp $
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
|
@ -13,11 +13,19 @@ CLEANFILES+= lorder
|
|||
|
||||
.include <bsd.hostprog.mk>
|
||||
|
||||
BUILD_OSTYPE!= uname -s
|
||||
BUILD_OSVERSION!= uname -r | sed -e 's,\([0-9]*\.[0-9]*\.*,\1,'
|
||||
|
||||
install: ${TIMESTAMP}
|
||||
${TIMESTAMP}: lorder
|
||||
${HOST_INSTALL_FILE} -m ${BINMODE} ${.ALLSRC} ${.TARGET}
|
||||
|
||||
lorder: lorder.sh
|
||||
.if ${BUILD_OSTYPE} == "Darwin" && ${BUILD_OSVERSION} < 8.0
|
||||
sed -e "s,/bin/sh,${HOST_BSHELL},g" \
|
||||
-e "/join/s/,/ /g" < ${.ALLSRC} > ${.TARGET}
|
||||
.else
|
||||
sed -e "s,/bin/sh,${HOST_BSHELL},g" < ${.ALLSRC} > ${.TARGET}
|
||||
.endif
|
||||
|
||||
realall: lorder
|
||||
|
|
Loading…
Reference in New Issue