]> git.sur5r.net Git - cc65/commitdiff
If an Amiga specific spawnvp() is the only alternative it seems save to classify...
authorOliver Schmidt <ol.sc@web.de>
Sat, 27 Apr 2013 07:19:41 +0000 (09:19 +0200)
committerOliver Schmidt <ol.sc@web.de>
Sat, 27 Apr 2013 15:20:31 +0000 (17:20 +0200)
src/cl65/main.c

index 53adb4547934740d46510887291048aa6f729e4c..de66ce9c163c6e5f0a263a44c4f2de44c5a25c0f 100644 (file)
@@ -136,12 +136,10 @@ static char* TargetLib    = 0;
 
 
 #if defined(NEED_SPAWN)
-#  if defined(SPAWN_UNIX)
-#    include "spawn-unix.inc"
-#  elif defined(SPAWN_AMIGA)
+#  if defined(SPAWN_AMIGA)
 #    include "spawn-amiga.inc"
 #  else
-#    error "Don't know which spawn module to include!"
+#    include "spawn-unix.inc"
 #  endif
 #endif