diff options
author | obache <obache> | 2014-05-21 01:43:50 +0000 |
---|---|---|
committer | obache <obache> | 2014-05-21 01:43:50 +0000 |
commit | f590c019a79d5d1210e7d28d31b220c8136e5c15 (patch) | |
tree | f70e57d46bdf6698078fc05c6ad73c4cdb9f8d60 /mk | |
parent | e410bea2a637d8fe59deecf5a7d697823cd6f2eb (diff) | |
download | pkgsrc-f590c019a79d5d1210e7d28d31b220c8136e5c15.tar.gz |
Fixes system endian header detection.
PR pkg/48823
Diffstat (limited to 'mk')
-rw-r--r-- | mk/endian.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/endian.mk b/mk/endian.mk index 16c0efc8821..624d50b2d13 100644 --- a/mk/endian.mk +++ b/mk/endian.mk @@ -1,4 +1,4 @@ -# $NetBSD: endian.mk,v 1.9 2013/11/26 07:25:53 obache Exp $ +# $NetBSD: endian.mk,v 1.10 2014/05/21 01:43:50 obache Exp $ # # Determine the endianness of the platform by checking header files. # @@ -20,7 +20,7 @@ .if !defined(MACHINE_ENDIAN) BUILTIN_FIND_HEADERS_VAR:= _ENDIAN_H -BUILTIN_FIND_HEADERS.ENDIAN_H= endian.h sys/endian.h machine/endian.h \ +BUILTIN_FIND_HEADERS._ENDIAN_H= endian.h sys/endian.h machine/endian.h \ sys/byteorder.h .include "../../mk/buildlink3/find-headers.mk" . if !empty(_ENDIAN_H:M__nonexistent__) |