aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorExplorer09 <explorer09@gmail.com>2017-01-02 16:13:42 +0800
committerWill Estes <westes575@gmail.com>2017-02-06 11:44:13 -0500
commitdec3a380e5f9574a90a98fded02abb2b73eded93 (patch)
tree0d521c5d8296bd46bd831faf80921009efcd3d6c
parente2d569053ae5359d1d87adf6f72d823a4308ef00 (diff)
downloadflex-dec3a380e5f9574a90a98fded02abb2b73eded93.tar.gz
build: Remove "-I$(top_srcdir)/intl" from CPPFLAGS.
Revert commit e02c3d27eeb6b53ec82532ab080c23ce26813fd4 ("include the intl/ subdirectory when searching for include files") Flex doesn't come with libintl source code, so inclusion of $(top_srcdir)/intl subdirectory during compiling is unnecessary. This flag seems to be left after "remove intl from dist" (commit 8f45da06adbd7dbcdfdbdd5c20ff4c47fc504f35) without someone cleaning this up. Users who need to build with gettext functionality from libintl would use the '--with-libintl-prefix' configure option.
-rw-r--r--src/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index e504861..f7d0e09 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -1,6 +1,6 @@
AM_YFLAGS = -d
localedir = $(datadir)/locale
-AM_CPPFLAGS = -DLOCALEDIR=\"$(localedir)\" -I$(top_srcdir)/intl
+AM_CPPFLAGS = -DLOCALEDIR=\"$(localedir)\"
LIBS = @LIBS@
m4 = @M4@