From 1d7c3e19f74689edef110dc72ace07d558a5cab7 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Tue, 23 Aug 2005 12:56:43 +0000 Subject: [ ... ] && ... exits false if the cond is false, this is not what we want here --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 52fd53bd2..fd65a2cf2 100644 --- a/Makefile +++ b/Makefile @@ -35,7 +35,7 @@ install_only: ifeq (i386,$(ARCH)) rm -rf $(ROOTDEST)/isolinux - [ -d isolinux/xbox ] && mv -f isolinux/xbox/{linuxboot.cfg,default.xbe} $(ROOTDEST) + if [ -d isolinux/xbox ]; then mv -f isolinux/xbox/{linuxboot.cfg,default.xbe} $(ROOTDEST); fi cp -af isolinux $(ROOTDEST) endif -- cgit v1.2.1