diff options
author | Kiriyama Kazuhiko <kiri@FreeBSD.org> | 2001-08-25 09:17:58 +0000 |
---|---|---|
committer | Kiriyama Kazuhiko <kiri@FreeBSD.org> | 2001-08-25 09:17:58 +0000 |
commit | 7fbc9cb45c5d2fd55605142b316dcbb02106a761 (patch) | |
tree | c0a350ee33eed016f77c4a7e4eb51de12842e085 /mail/mew2/scripts/configure | |
parent | Do not overwrite existen drwebsmf.sh on install (diff) |
Mew2 for Emacs20 port now committed on reposit copied from
mail/mew.
Notes
Notes:
svn path=/head/; revision=46869
Diffstat (limited to 'mail/mew2/scripts/configure')
-rw-r--r-- | mail/mew2/scripts/configure | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/mail/mew2/scripts/configure b/mail/mew2/scripts/configure deleted file mode 100644 index f82ebf02a074..000000000000 --- a/mail/mew2/scripts/configure +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/sh - -for i in ${TARGETS}; do - if [ -f ${WRKDIR}/${i}.in ]; then - cat ${WRKDIR}/${i}.in | \ - sed \ - -e "s;%%LOCALBASE%%;${LOCALBASE};g" \ - -e "s;%%EMACS_LIBDIR%%;${EMACS_LIBDIR};g" \ - -e "s;%%EMACS_SETUPEL%%;${EMACS_SETUPEL};g" \ - > ${WRKDIR}/${i} - fi -done |