summaryrefslogtreecommitdiff
path: root/mk/endian.mk
diff options
context:
space:
mode:
authorjlam <jlam>2004-02-06 19:04:24 +0000
committerjlam <jlam>2004-02-06 19:04:24 +0000
commita0db33103cd4ddee3ab1e90a3b1066b1f4b9175c (patch)
tree9e1ed235761e43178980383a9260a8ca70040dfb /mk/endian.mk
parent631c13ce91943cfd85bbbb80fd5a000e928de595 (diff)
downloadpkgsrc-a0db33103cd4ddee3ab1e90a3b1066b1f4b9175c.tar.gz
If we're passing through MAKEFLAGS variables whose values may contain
spaces, use the :Q modifier instead of double-quoting the value. This avoids breakage when executing the just-in-time su targets.
Diffstat (limited to 'mk/endian.mk')
-rw-r--r--mk/endian.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/endian.mk b/mk/endian.mk
index b0bbf3be871..341ac3966a0 100644
--- a/mk/endian.mk
+++ b/mk/endian.mk
@@ -1,4 +1,4 @@
-# $NetBSD: endian.mk,v 1.2 2002/08/14 02:38:25 grant Exp $
+# $NetBSD: endian.mk,v 1.3 2004/02/06 19:04:25 jlam Exp $
#
# Determine the endianness of the platform by checking header files.
#
@@ -47,5 +47,5 @@ MACHINE_ENDIAN!= \
4321) ${ECHO} big ;; \
*) ${ECHO} unknown ;; \
esac
-MAKEFLAGS+= MACHINE_ENDIAN="${MACHINE_ENDIAN}"
+MAKEFLAGS+= MACHINE_ENDIAN=${MACHINE_ENDIAN}
.endif