add mask color radio btn sel, fix del all mask btn, fix mask dflt kfrm draw name...
[goodguy/cinelerra.git] / cinelerra-5.1 / inst.sh
index bbfee547528bda5185edb51f0effb72dfc7c70a4..27f7a706366f5e57e9779aca5b7089867d955f24 100755 (executable)
@@ -1,14 +1,12 @@
 #!/bin/bash -e
 # inst.sh <dir> <objs...>
-cr='
-'
 dir="$1"; shift 1
-$mkinstalldirs "$dir"
+mkdir -p "$dir"
 if [ "$*" = "*" ]; then exit; fi
 
 for f in "$@"; do
-  if [ -f "$f" ]; then $install_sh -c "$f" "$dir"; continue; fi
+  if [ -f "$f" ]; then cp "$f" "$dir"; continue; fi
   if [ -d "$f" ]; then ( cd $f; $inst_sh "$dir/$f" * )
-  else echo "*** Error - install $f in $dir failed." 1>&2; exit 1; fi
+  else echo "*** Error - inst.sh $f in $dir failed." 1>&2; exit 1; fi
 done