X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=support%2Frlvers.sh;h=a6d751f38d1c955f78fe0bb1e914c662bd8354ba;hb=28ef6c316f1aff914bb95ac09787a3c83c1815fd;hp=ea85afa4303704085e8a78239d6a62c65147ed23;hpb=bb70624e964126b7ac4ff085ba163a9c35ffa18f;p=platform%2Fupstream%2Fbash.git diff --git a/support/rlvers.sh b/support/rlvers.sh index ea85afa..a6d751f 100755 --- a/support/rlvers.sh +++ b/support/rlvers.sh @@ -5,17 +5,22 @@ # PROGNAME=`basename $0` -TDIR=/tmp/rlvers + +: ${TMPDIR:=/tmp} +TDIR=$TMPDIR/rlvers # defaults CC=cc RL_LIBDIR=/usr/local/lib +RL_INCDIR=/usr/local/include TERMCAP_LIB="-ltermcap" +# cannot rely on the presence of getopts while [ $# -gt 0 ]; do case "$1" in -C) shift ; CC="$1"; shift ;; + -I) shift ; RL_INCDIR="$1" ; shift ;; -L) shift ; RL_LIBDIR="$1" ; shift ;; -T) shift ; TERMCAP_LIB="$1" ; shift ;; -v) shift ; verbose=y ;; @@ -64,7 +69,15 @@ main() } EOF -if eval ${CC} -L${RL_LIBDIR} -o $TDIR/rlvers $TDIR/rlvers.c -lreadline ${TERMCAP_LIB}; +opwd=`pwd` + +cd $TDIR || { + echo "${PROGNAME}: cannot cd to $TDIR" >&2 + echo 0 + exit 1 +} + +if eval ${CC} -L${RL_LIBDIR} -I${RL_INCDIR} -o $TDIR/rlvers $TDIR/rlvers.c -lreadline ${TERMCAP_LIB}; then v=`$TDIR/rlvers` else @@ -80,4 +93,5 @@ unknown | "") echo 0 ;; *) echo "$v" ;; esac +cd $opwd exit 0