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-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a0cfe8864ea72993d3462cbb93663893ec724dba;p=neomutt Install system muttrc from the build directory, not the source directory. --- diff --git a/Makefile.am b/Makefile.am index 31a65658a..a94f4e1b2 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); \