I got following build failure:
Data/KeyMaps/KeyMaps.build(24,4):
External Program Failed: build/key-compiler.exe (return code was 255)

// KeyMaps.build
<?xml version="1.0"?>

<!--
       *  (C) 2007 SharpOS Team
   *
   * Authors:
   *    William Lahti
   *
       *  Licensed under the terms of the GNU GPL License version 2.
       *
-->

<project name="Data/KeyMaps" default="build">
   <description>Compiles the keymaps to binary form</description>

   <property name="debug" value="false" readonly="false" 
overwrite="false" />
   <property name="prefix" value="../../build/KeyMaps" />
   <property name="compiler" value="../../build/key-compiler.exe" />

   <target name="build">
       <echo message="Building Key compiler" />
       <mkdir dir="${prefix}" />
       <nant buildfile="../../Tools/KeyCompiler/KeyCompiler.build" />
       <!-- next line is line 24 -->
       <exec program="${compiler}" commandline="US.skm 
-o:${prefix}/US.bin" />
       <exec program="${compiler}" commandline="UK.skm 
-o:${prefix}/UK.bin" />
       <exec program="${compiler}" commandline="US-Dvorak-ANSI.skm 
-o:${prefix}/US-Dvorak-ANSI.bin" />
       <exec program="${compiler}" commandline="US-Dvorak-Classic.skm 
-o:${prefix}/US-Dvorak-Classic.bin" />
       <exec program="${compiler}" commandline="DE.skm 
-o:${prefix}/DE.bin" />
   </target>

   <target name="clean">
       <delete file="${prefix}/US.bin" failonerror="false" />
       <delete file="${prefix}/UK.bin" failonerror="false" />
       <delete file="${prefix}/US-Dvorak-ANSI.bin" failonerror="false" />
       <delete dir="${prefix}" />
   </target>
</project>

How can I fix it? Thank you!

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
SharpOS-Developers mailing list
SharpOS-Developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sharpos-developers

Reply via email to