David,

The section that creates the output directories is this:

REM - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
REM  :IS_DEBUG
REM    Sets the variables for a debug build and creates the output directory, if
REM    needed.
REM - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
:IS_DEBUG
set MKNODEBUG=0
set MKDEBUG=1
IF %DOPACKAGE% == 1 SET PACKAGE_DBG=1
set OR_OUTDIR=%SRC_DRV%%SRC_DIR%\Win32Dbg
set OR_OUTDIR_API=%OR_OUTDIR%\api
set OR_ERRLOG=%OR_OUTDIR%\Win32Dbg.log
if not exist %OR_OUTDIR% md %OR_OUTDIR%
if not exist %OR_OUTDIR_API% md %OR_OUTDIR_API%
GOTO BUILD_CHECK_DONE

You see the 'if not exist' lines.  That is where it would create 2 directories.

Then you see this in your output:

>  No sense in starting if SRC_DIR and SRC_DRV are not set.
>  Might be needed for a build under Win 2000.
>  Check that we have at least the first option
>  If NO_BUILD_LOG is set, do not redirect to a log.
>  Check for the 'package' option
>  Check for the type of build
> The device is not ready.
> The device is not ready.

Right there above is where it tried to create the directories, and the
OS says there is a problem.

--
Mark Miesfeld

------------------------------------------------------------------------------
The Planet: dedicated and managed hosting, cloud storage, colocation
Stay online with enterprise data centers and the best network in the business
Choose flexible plans and management services without long-term contracts
Personal 24x7 support from experience hosting pros just a phone call away.
http://p.sf.net/sfu/theplanet-com
_______________________________________________
Oorexx-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/oorexx-devel

Reply via email to