From a78009a5370418158fd83dd629a8451d08cd70be Mon Sep 17 00:00:00 2001 From: Karsten Keil Date: Sat, 25 Feb 2012 16:04:33 +0100 Subject: [PATCH] Fix eicon make Debian sid vbox-little-endian.patch Signed-off-by: Karsten Keil --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 83699abe..86f2e851 100644 --- a/Makefile +++ b/Makefile @@ -202,7 +202,10 @@ cfgerror: subconfig: scripts/autoconf.h @echo Selected subdirs: $(BUILD_ONLY) $(SUBDIRS) @set -e; for i in `echo $(BUILD_ONLY) $(SUBDIRS)`; do \ - if [ -x $$i/configure ] ; then \ + if [ $$i = eicon ] ; then \ + /bin/echo -e "\nRunning configure in $$i ...\n"; sleep 1; \ + (cd $$i; ./configure --with-sbin=$(CONFIG_SBINDIR) --bindir=$(CONFIG_BINDIR) --with-man=$(CONFIG_MANDIR) --datadir=$(CONFIG_DATADIR) --libdir=$(LIBDIR) --with-firmware=$(CONFIG_DATADIR) || $(MAKE) -C ../ ERRDIR=$$i cfgerror); \ + elif [ -x $$i/configure ] ; then \ /bin/echo -e "\nRunning configure in $$i ...\n"; sleep 1; \ (cd $$i; ./configure --sbindir=$(CONFIG_SBINDIR) --bindir=$(CONFIG_BINDIR) --mandir=$(CONFIG_MANDIR) --datadir=$(CONFIG_DATADIR) --libdir=$(LIBDIR) || $(MAKE) -C ../ ERRDIR=$$i cfgerror); \ elif [ -f $$i/Makefile.in ] ; then \