From 10a7bb2579f14613532d8e1ae6bac3893fd73fe3 Mon Sep 17 00:00:00 2001 From: oliverschmidt Date: Sun, 23 Jan 2011 16:25:45 +0000 Subject: [PATCH] Made Atari build compabile with make.exe from GnuWin32 and cmd.exe. cmd.exe comes with a builtin mkdir which doesn't understand -p. However -p isn't necessary as long as the disk creation works - and therefore the directory is successfully deleted. --- platform/atari/Makefile.atari | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platform/atari/Makefile.atari b/platform/atari/Makefile.atari index 1436bbdd7..c8377655a 100644 --- a/platform/atari/Makefile.atari +++ b/platform/atari/Makefile.atari @@ -30,7 +30,7 @@ # # Author: Oliver Schmidt # -# $Id: Makefile.atari,v 1.2 2010/11/01 19:44:34 oliverschmidt Exp $ +# $Id: Makefile.atari,v 1.3 2011/01/23 16:25:45 oliverschmidt Exp $ # ETHERNET = cs8900a @@ -50,7 +50,7 @@ ifeq ($(MAKECMDGOALS),disk) endif disk: all - mkdir -p atr + mkdir atr cp $(CONTIKI)/tools/$(TARGET)/dos.sys atr/dos.sys cp $(CONTIKI)/tools/$(TARGET)/dup.sys atr/dup.sys cp $(CONTIKI_PROJECT).$(TARGET) atr/autorun.sys