view lib-src/installexe.sh @ 4343:fb73a2046d3e

Fix unused parameter warnings when compiling with ALSA sound support. 2007-12-20 Jerry James <james@xemacs.org> * sound.c: Fix unused parameter warnings when HAVE_ALSA_SOUND.
author Jerry James <james@xemacs.org>
date Thu, 20 Dec 2007 09:51:51 -0700
parents 3ee1c468b215
children 8a653fbe5c27
line wrap: on
line source

#!bash

install_prog=$1
shift

tstr=""

while [[ $# -gt 0 ]]
do
  if [[ -f $1.exe ]]
  then
    if [[ "$2" == *.exe ]]
    then
      tstr="$tstr$1 $2"
    else
      tstr="$tstr$1.exe $2.exe"
    fi
    shift 2
  else
    tstr="$tstr$1 "
  fi
  shift
done
echo "$install_prog $tstr"
eval "$install_prog $tstr"
exit