diff options
author | Brian Fraser <fraserbn@gmail.com> | 2014-01-15 06:42:35 -0300 |
---|---|---|
committer | Brian Fraser <fraserbn@gmail.com> | 2014-01-17 11:35:48 -0300 |
commit | 1b2243c701f4438018242947ec41ea8dd65e3dbe (patch) | |
tree | b2e3cfa2f4f5d55a6fbc238600ad8a572bb904d5 /config_h.SH | |
parent | b76ca5cc32f3249b9a89eb81c445f069e69fb814 (diff) | |
download | perl-1b2243c701f4438018242947ec41ea8dd65e3dbe.tar.gz |
config.h: Remove the exceptions for cross-compilation builds
This makes it so that the values for MEM_ALIGNBYTES and BYTEORDER
are taken from config.sh, instead of always getting a default.
Diffstat (limited to 'config_h.SH')
-rwxr-xr-x | config_h.SH | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config_h.SH b/config_h.SH index 071229a09d..8f7a05864c 100755 --- a/config_h.SH +++ b/config_h.SH @@ -1022,7 +1022,7 @@ sed <<!GROK!THIS! >$CONFIG_H -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un * so the default case (for NeXT) is big endian to catch them. * This might matter for NeXT 3.0. */ -#if defined(USE_CROSS_COMPILE) || defined(MULTIARCH) +#if defined(MULTIARCH) # ifdef __LITTLE_ENDIAN__ # if LONGSIZE == 4 # define BYTEORDER 0x1234 |