diff options
author | kent@mysql.com <> | 2005-07-05 23:24:48 +0200 |
---|---|---|
committer | kent@mysql.com <> | 2005-07-05 23:24:48 +0200 |
commit | a7be42163a635d80516ce9398881091fc0e6a63b (patch) | |
tree | 46d2e6253bab908e4eabff243b4542a9632468e2 /libmysql_r | |
parent | 62173c5a9d8fcd1f9b365f3cbf14198d06b2170e (diff) | |
download | mariadb-git-a7be42163a635d80516ce9398881091fc0e6a63b.tar.gz |
Makefile.am:
Added -I$(top_builddir)/include for searching
generated header files, when builddir != srcdir
Diffstat (limited to 'libmysql_r')
-rw-r--r-- | libmysql_r/Makefile.am | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libmysql_r/Makefile.am b/libmysql_r/Makefile.am index 0a5c380ff35..a76ef675189 100644 --- a/libmysql_r/Makefile.am +++ b/libmysql_r/Makefile.am @@ -24,8 +24,9 @@ target = libmysqlclient_r.la target_defs = -DDONT_USE_RAID -DMYSQL_CLIENT @LIB_EXTRA_CCFLAGS@ LIBS = @LIBS@ @ZLIB_LIBS@ @openssl_libs@ -INCLUDES = @MT_INCLUDES@ \ - -I$(top_srcdir)/include $(openssl_includes) @ZLIB_INCLUDES@ +INCLUDES = @MT_INCLUDES@ \ + -I$(top_builddir)/include -I$(top_srcdir)/include \ + $(openssl_includes) @ZLIB_INCLUDES@ ## automake barfs if you don't use $(srcdir) or $(top_srcdir) in include include $(top_srcdir)/libmysql/Makefile.shared |