From: Thomas Roessler Date: Tue, 16 May 2000 19:01:50 +0000 (+0000) Subject: We don't need to build in the charmaps/ directory unless we use the X-Git-Tag: mutt-1-3-1-rel~21 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=62b83148b2df7aa662ed66cec8e462a9a2168df3;p=mutt We don't need to build in the charmaps/ directory unless we use the included iconv. --- diff --git a/Makefile.am b/Makefile.am index e262710c..18662afb 100644 --- a/Makefile.am +++ b/Makefile.am @@ -4,10 +4,6 @@ AUTOMAKE_OPTIONS = foreign EXTRA_PROGRAMS = mutt_dotlock pgpring makedoc -if BUILD_CHARMAPS -CHARMAP_SUBDIR = charmaps -endif - if BUILD_IMAP IMAP_SUBDIR = imap IMAP_INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/imap @@ -16,6 +12,10 @@ endif if BUILD_ICONV ICONV_SUBDIR = iconv ICONV_INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/iconv +if BUILD_CHARMAPS +CHARMAP_SUBDIR = charmaps +endif + endif SUBDIRS = m4 po intl doc contrib $(CHARMAP_SUBDIR) $(IMAP_SUBDIR) $(ICONV_SUBDIR)