about summary refs log tree commit diff
path: root/Config/uninstallfns.sh
blob: 017f657d979136de24249e4d8dd814a55f22a6a6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/bin/sh

# 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

for file in $install; do
  if test -f $sdir/$file; then
    if test x$FUNCTIONS_SUBDIRS != x -a x$FUNCTIONS_SUBDIRS != xno; then
      rm -f $DESTDIR$fndir/$file;
      if test -f $DESTDIR$fndir.old/$file; then
	mv $DESTDIR$fndir.old/$file $DESTDIR$fndir/$file
      fi
    else
      bfile="`echo $file | sed -e 's%^.*/%%'`"
      rm -f "$DESTDIR$fndir/$bfile"; \
      if test -f $DESTDIR$fndir.old/$bfile; then
        mv $DESTDIR$fndir.old/$bfile $DESTDIR$fndir/$bfile
      fi
    fi
  fi
done

exit 0