Mercurial > hg > xemacs-beta
view lib-src/installexe.sh @ 962:bbc2941a94d7
[xemacs-hg @ 2002-08-13 11:37:20 by michaels]
2002-08-12 David Bush <David.Bush@intel.com>
* events.c: Use DEFINE_BASIC_LRECORD_IMPLEMENTATION instead of
DEFINE_LRECORD_IMPLEMENTATION for the new event data objects to cause
the objects to be flagged as basic.
author | michaels |
---|---|
date | Tue, 13 Aug 2002 11:37:32 +0000 |
parents | 0784d089fdc9 |
children | 3ee1c468b215 |
line wrap: on
line source
#!bash install_prog=$1 shift tstr="" while [ $# -gt 0 ] do if [ -f $1.exe ] then tstr="$tstr$1.exe $2.exe" shift 2 else tstr="$tstr$1 " fi shift done echo "$install_prog $tstr" eval "$install_prog $tstr" exit