diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-03-06 22:19:16 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-03-06 22:19:16 +0000 |
commit | f51f2417c59615da5a08cf3165c88cb103b1733f (patch) | |
tree | 388af1c05b15ffb3626e51ff3299c9a0f300ceed /src | |
parent | aad617647da2b2c0d4e34a959f59cfbd62704f6b (diff) |
Brad corrected the include path (again)
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 5644e0d40..597ed62fd 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -6,7 +6,8 @@ AUTOMAKE_OPTIONS = foreign nostdinc # we use srcdir/include for the static global include files # we use builddir/src for the generated src/config.h file to get found -INCLUDES = -I$(top_srcdir)/include -I$(top_builddir)/src +# we use srcdir/lib for the client-private header files +INCLUDES = -I$(top_srcdir)/include -I$(top_builddir)/src -I$(top_srcdir)/src bin_PROGRAMS = curl #memtest |