fixes from nasty path code.
authorChris Koeritz <fred@gruntose.com>
Fri, 21 Dec 2012 20:27:38 +0000 (15:27 -0500)
committerChris Koeritz <fred@gruntose.com>
Fri, 21 Dec 2012 20:27:38 +0000 (15:27 -0500)
nucleus/tools/clam_tools/cygwin_fixer.cpp
scripts/generator/bootstrap_build.sh

index 2f4eb1c8e8ae08753a61ec24e03a4673be539aea..1295d917880de7187627b0a82357432a014b5784 100644 (file)
@@ -27,7 +27,7 @@ char *translate_cygwin(char *fname)
     strncat(newprefix, fname + 11, oldlen - 11 + 1);  // one extra for null char.
     return newprefix;  // mem leak here; cannot be helped for quick fix using functional style.
   } else if ( (fname[0] == '-') && (oldlen > 12)
-      && (!strncmp(fname + 2, "/cygdrive/", 10) ) {
+      && (!strncmp(fname + 2, "/cygdrive/", 10)) ) {
     // in the second case we are looking for command line options.  this code handles a parameter
     // that starts with a single dash and has a single flag character after that.
     char *newprefix = (char *)malloc(oldlen);
@@ -45,12 +45,15 @@ char *translate_cygwin(char *fname)
 }
 
 
+/*
+
 function dossify_and_run_commands()
 {
-  declare -a darc_commands=()
 
+
+  declare -a darc_commands=()
   for i in "$@"; do
-    # we only mess with the command line on windows.
+    // we only mess with the command line on windows.
     if [ "$OS" == "Windows_NT" ]; then
       if [[ "$i" =~ ^-[a-zA-z][/\"].* ]]; then
 #echo matched on our pattern for parameters
@@ -71,7 +74,9 @@ function dossify_and_run_commands()
     fi
   done
 
+}
 
+*/
 
 int main(int argc, char *argv[])
 {
index 1314e1db9f51bf8f1c31e6fc1e95b8879ca47b03..0e2886e11ef7aec60764ee95f0943c6d0c7a6212 100644 (file)
@@ -45,7 +45,7 @@ source "$FEISTY_MEOW_SCRIPTS/core/functions.sh"
 
 # translate to dos format if there's a cygdrive in there; otherwise microsoft's tools
 # will hose up completely due to unknown paths.
-export FEISTY_MEOW_DIR="$(unix_to_dos $FEISTY_MEOW_DIR)"
+export FEISTY_MEOW_DIR="$(unix_to_dos_path $FEISTY_MEOW_DIR)"
 
 # load in build variables based on our deduced paths.
 source "$BUILD_SCRIPTS_DIR/build_variables.sh" "$BUILD_SCRIPTS_DIR/build_variables.sh"