diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-08-23 12:56:43 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-08-23 12:56:43 +0000 |
commit | 1d7c3e19f74689edef110dc72ace07d558a5cab7 (patch) | |
tree | f93939f832e53ef4082ee6b5cc9a6004fc8d44fc /Makefile | |
parent | fe7ac07297f633f3ff7398ef82661cabf08075fa (diff) | |
download | drakx-1d7c3e19f74689edef110dc72ace07d558a5cab7.tar drakx-1d7c3e19f74689edef110dc72ace07d558a5cab7.tar.gz drakx-1d7c3e19f74689edef110dc72ace07d558a5cab7.tar.bz2 drakx-1d7c3e19f74689edef110dc72ace07d558a5cab7.tar.xz drakx-1d7c3e19f74689edef110dc72ace07d558a5cab7.zip |
[ ... ] && ... exits false if the cond is false, this is not what we want here
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |