Changeset 28367


Ignore:
Timestamp:
2013-10-09T23:00:28+13:00 (11 years ago)
Author:
davidb
Message:

Changes to compile script made after testing on Cygwin

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gs2-extensions/music-ir-src/trunk/build-srcpack/packages/CASCADE-MAKE/JAUDIO.sh

    r22243 r28367  
    2020  classpath=".:jAudioFeatureExtractor:tritonus_remaining-0.3.6.jar:tritonus_share-0.3.6.jar:xerces.jar:jhall.jar:mp3plugin.jar"
    2121
    22   auxfiles="jAudioFeatureExtractor/AudioFeatures/*.java"
     22  auxfiles=`ls jAudioFeatureExtractor/AudioFeatures/*.java`
    2323
    2424  which cygpath 2>&1 > /dev/null
    2525  if [ $? = "0" ] ; then
    2626    classpath=`cygpath -pw "$classpath"`
    27     auxfiles=`cygpath -w "$auxfiles"`
    2827  fi
    2928
    30   echo "      Compiling Java source files"
    31   javac -classpath "$classpath" $auxfiles
     29  for auxfile in $auxfiles ; do
     30
     31    which cygpath 2>&1 > /dev/null
     32    if [ $? = "0" ] ; then
     33      auxfile=`cygpath -w "$auxfile"`
     34    fi
     35
     36    echo "      Compiling Java source file '$auxfile'"
     37    javac -classpath "$classpath" $auxfiles
     38  done
     39
    3240  javac -classpath "$classpath" jAudioFE.java
    3341
Note: See TracChangeset for help on using the changeset viewer.