1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-10-03 17:31:33 +02:00
zsh/Config/installfns.sh

27 lines
805 B
Bash
Raw Normal View History

1999-07-12 19:02:52 +02:00
#!/bin/sh
fndir=$DESTDIR$fndir
1999-07-12 19:02:52 +02:00
$sdir_top/mkinstalldirs $fndir || exit 1;
2000-12-04 13:02:28 +01:00
allfuncs="`grep ' functions=.' ${dir_top}/config.modules |
sed -e '/^#/d' -e '/ link=no/d' -e 's/^.* functions=//'`"
allfuncs="`cd $sdir_top; echo ${allfuncs}`"
1999-07-12 19:02:52 +02:00
# 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
1999-07-12 19:02:52 +02:00
if test x$FUNCTIONS_SUBDIRS != x -a x$FUNCTIONS_SUBDIRS != xno; then
subdir="`echo $file | sed -e 's%/[^/]*$%%' \
-e s%^Functions/%% -e s%^Completion/%%`"
1999-07-12 19:02:52 +02:00
instdir="$fndir/$subdir"
else
instdir="$fndir"
fi
test -d $instdir || $sdir_top/mkinstalldirs $instdir || exit 1
$INSTALL_DATA $sdir_top/$file $instdir || exit 1
1999-07-12 19:02:52 +02:00
fi
done