From 37a5fe881f34bcebd400baffd50c6aafa8fc1327 Mon Sep 17 00:00:00 2001 From: Paul Ackersviller Date: Wed, 16 May 2007 04:30:24 +0000 Subject: Merge 21510, 22360, 22365. --- Config/installfns.sh | 54 +++++++++++++++++++++++++++++++--------------------- 1 file changed, 32 insertions(+), 22 deletions(-) (limited to 'Config/installfns.sh') diff --git a/Config/installfns.sh b/Config/installfns.sh index ec738e2d7..e6faf3d2b 100755 --- a/Config/installfns.sh +++ b/Config/installfns.sh @@ -2,32 +2,42 @@ fndir=$DESTDIR$fndir -$sdir_top/mkinstalldirs $fndir || exit 1; +/bin/sh $sdir_top/mkinstalldirs $fndir || exit 1; -# If the source directory is somewhere else, we need to force -# the shell to expand it in that directory, then strip it off. -install= -for file in $FUNCTIONS_INSTALL; do - if test -f "$sdir/$file"; then - install="$install $file" - else - install="$install `echo '' $sdir/$file | sed -e \"s% $sdir/% %g\"`" - fi -done +allfuncs="`grep ' functions=.' ${dir_top}/config.modules | + sed -e '/^#/d' -e '/ link=no/d' -e 's/^.* functions=//'`" + +allfuncs="`cd $sdir_top; echo ${allfuncs}`" -for file in $install; do - if test -f $sdir/$file; then - if test x$FUNCTIONS_SUBDIRS != x -a x$FUNCTIONS_SUBDIRS != xno; then - subfile="$file" - subdir="`echo $file | sed -e 's%/[^/]*$%%'`" - instdir="$fndir/$subdir" +# We now have a list of files, but we need to use `test -f' to check +# (1) the glob got expanded (2) we are not looking at directories. +for file in $allfuncs; do + if test -f $sdir_top/$file; then + case "$file" in + */CVS/*) continue;; + esac + if test x$FUNCTIONS_SUBDIRS != x && test x$FUNCTIONS_SUBDIRS != xno; then + case "$file" in + Completion/*/*) + subdir="`echo $file | sed -e 's%/[^/]*/[^/]*$%%'`" + instdir="$fndir/$subdir" + ;; + Completion/*) + instdir="$fndir/Completion" + ;; + *) + subdir="`echo $file | sed -e 's%/[^/]*$%%' -e 's%^Functions/%%'`" + instdir="$fndir/$subdir" + ;; + esac else - subfile="`echo $file | sed -e 's%^.*/%%'`" instdir="$fndir" fi - $sdir_top/mkinstalldirs $instdir || exit 1 - $INSTALL_DATA $sdir/$file $instdir || exit 1 + test -d $instdir || /bin/sh $sdir_top/mkinstalldirs $instdir || exit 1 + if test -x $sdir_top/$file; then + $INSTALL_PROGRAM $sdir_top/$file $instdir || exit 1 + else + $INSTALL_DATA $sdir_top/$file $instdir || exit 1 + fi fi done - -exit 0 -- cgit 1.4.1