diff options
author | Florent Thoumie <flz@FreeBSD.org> | 2006-02-20 13:31:57 +0000 |
---|---|---|
committer | Florent Thoumie <flz@FreeBSD.org> | 2006-02-20 13:31:57 +0000 |
commit | 502a8a1d04bde9c073ada11f5368d193df672a41 (patch) | |
tree | 7fc706eabee6e0e4b49e51917454315af436fd08 /mail/elm+ME | |
parent | 3ba3556c89c8ec599e37db05e61dfbbcb88976d0 (diff) | |
download | ports-502a8a1d04bde9c073ada11f5368d193df672a41.tar.gz ports-502a8a1d04bde9c073ada11f5368d193df672a41.zip |
Notes
Diffstat (limited to 'mail/elm+ME')
-rw-r--r-- | mail/elm+ME/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mail/elm+ME/Makefile b/mail/elm+ME/Makefile index e9eb25ab3d48..8d3aeae9af95 100644 --- a/mail/elm+ME/Makefile +++ b/mail/elm+ME/Makefile @@ -159,7 +159,7 @@ MIME_TYPES= elm.mimetypes MIME_CSETS= elm.mimecharsets TERM_INFO= elm.terminalinfo ELM_RC= elm.rc -CONF_FILES= ${MIME_TYPES} ${MIME_CSETS} ${TERM_INFO} ${ELM_RC} +LOCAL_CONF_FILES= ${MIME_TYPES} ${MIME_CSETS} ${TERM_INFO} ${ELM_RC} DOC_FILES= MIME.txt README.ME+ \ doc/Alias.fmtd doc/Config.fmtd doc/Cover.fmtd \ doc/Form.fmtd doc/Ref.fmtd doc/Users.fmtd @@ -238,7 +238,7 @@ create-install-dirs: @${MKDIR} ${CONF_DIR} ${LIB_DIR} ${SHLIB_DIR} backup-conf-files: -.for file in ${CONF_FILES} +.for file in ${LOCAL_CONF_FILES} @if [ -f ${LIB_DIR}/${file} ]; then \ ${MV} ${LIB_DIR}/${file} ${CONF_DIR}/${file}.orig; \ elif [ -f ${CONF_DIR}/${file} ]; then \ @@ -271,13 +271,13 @@ install-mime-types: @${INSTALL_DATA} ${FILESDIR}/${MIME_TYPES} ${CONF_DIR}/${MIME_TYPES} install-conf-files: -.for file in ${CONF_FILES} +.for file in ${LOCAL_CONF_FILES} @${INSTALL_DATA} ${CONF_DIR}/${file} ${CONF_DIR}/${file}-dist .endfor # for instance, don't restore obsolete files :( except elm.rc :) restore-conf-files: -.for file in ${ELM_RC} # ${CONF_FILES} +.for file in ${ELM_RC} # ${LOCAL_CONF_FILES} @if [ -f ${CONF_DIR}/${file}.orig ]; then \ ${MV} ${CONF_DIR}/${file}.orig ${CONF_DIR}/${file}; \ fi |