For now, mimic arm behavior for armeb since that's what uClibc's

fix-includes script winds up doing.  Fix this later...
This commit is contained in:
Manuel Novoa III 2004-09-03 01:24:18 +00:00
parent 72badc0f65
commit 8302669882

View File

@ -81,6 +81,12 @@ $(LINUX_DIR)/.configured: $(LINUX_DIR)/.patched
if [ ! -L proc ] ; then \
ln -fs proc-armv proc; \
ln -fs arch-ebsa285 arch; fi); \
elif [ "$(ARCH)" = "armeb" ];then \
(cd $(LINUX_DIR)/include; ln -fs asm-arm$(NOMMU) asm; \
cd asm; \
if [ ! -L proc ] ; then \
ln -fs proc-armv proc; \
ln -fs arch-ebsa285 arch; fi); \
elif [ "$(ARCH)" = "cris" ];then \
(cd $(LINUX_DIR)/include; ln -fs asm-cris asm;) \
else \