mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-23 15:54:21 -09:00
package/prboom: Fix big endian fix up
The hack to force big endian support when building
for a big endian machine doesn't work as there is
some whitespace between "#" and "undef" in config.h.
Add a wildcard between those two so that the target
line matches and the replacement is done.
Allows me to play DOOM on my LC475.
Signed-off-by: Daniel Palmer <daniel@0x0f.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
(cherry picked from commit ebcd82198f)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
committed by
Peter Korsgaard
parent
7d3901ca5f
commit
01e010cfc4
@@ -40,7 +40,7 @@ PRBOOM_CONF_OPTS = \
|
||||
|
||||
# endianness detection isn't used when cross compiling
|
||||
define PRBOOM_BIG_ENDIAN_FIXUP
|
||||
$(SED) 's,.*#undef WORDS_BIGENDIAN.*,#define WORDS_BIGENDIAN 1,g' \
|
||||
$(SED) 's,.*#.*undef WORDS_BIGENDIAN.*,#define WORDS_BIGENDIAN 1,g' \
|
||||
$(PRBOOM_DIR)/config.h
|
||||
endef
|
||||
|
||||
|
||||
Reference in New Issue
Block a user