From: Brendan Cully Date: Mon, 1 Aug 2005 18:13:04 +0000 (+0000) Subject: Install system muttrc from the build directory, not the source directory. X-Git-Tag: mutt-1-5-10-rel~88 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2aee5764c9d95f8f10d8b51926c331d460dba5bc;p=mutt Install system muttrc from the build directory, not the source directory. --- diff --git a/Makefile.am b/Makefile.am index 31a65658..a94f4e1b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -145,7 +145,7 @@ install-data-local: Muttrc elif [ -f $(DESTDIR)$(pkgdatadir)/../Muttrc ] ; then \ mv $(DESTDIR)$(pkgdatadir)/../Muttrc* $(DESTDIR)$(sysconfdir) ; \ elif [ ! -f $(DESTDIR)$(sysconfdir)/Muttrc ] ; then \ - $(INSTALL) -m 644 $(srcdir)/Muttrc $(DESTDIR)$(sysconfdir) ; \ + $(INSTALL) -m 644 Muttrc $(DESTDIR)$(sysconfdir) ; \ fi -if [ ! -f $(DESTDIR)$(sysconfdir)/mime.types ]; then \ $(INSTALL) -m 644 $(srcdir)/mime.types $(DESTDIR)$(sysconfdir); \