moved the top-level and probably most important feisty meow variable from the seeming...
[feisty_meow.git] / scripts / buildor / synch_to_build.sh
index 36e76550fcf8900314a0cb924b92d0dd2dfdbe90..10121467568fb461e3cf87527b9552efb1a1f27a 100644 (file)
@@ -12,8 +12,8 @@ exval=0
 
 for curr_file in "$instdir"/*.dll; do 
   base=$(basename "$curr_file")
-  if [ -f "$FEISTY_MEOW_DIR/dll/$base" ]; then
-    cp -f "$FEISTY_MEOW_DIR/dll/$base" "$curr_file"
+  if [ -f "$FEISTY_MEOW_APEX/dll/$base" ]; then
+    cp -f "$FEISTY_MEOW_APEX/dll/$base" "$curr_file"
     if [ $? -ne 0 ]; then
       echo "** Error copying $base to $instdir"
       exval=1
@@ -22,8 +22,8 @@ for curr_file in "$instdir"/*.dll; do
 done
 for curr_file in "$instdir"/*.exe; do 
   base=$(basename "$curr_file")
-  if [ -f "$FEISTY_MEOW_DIR/exe/$base" ]; then
-    cp -f "$FEISTY_MEOW_DIR/exe/$base" "$curr_file"
+  if [ -f "$FEISTY_MEOW_APEX/exe/$base" ]; then
+    cp -f "$FEISTY_MEOW_APEX/exe/$base" "$curr_file"
     if [ $? -ne 0 ]; then
       echo "** Error copying $base to $instdir"
       exval=1