diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-02-27 15:09:23 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-02-27 15:09:23 +0000 |
commit | 6753c3c71552ebab50390209211d26c9a3e02109 (patch) | |
tree | 9a7ac02b2bcc40df750b34c6c0da0dbac8ec7d42 /src | |
parent | 36e1363e3d85a85c61e838f8ae6168c95faba50f (diff) |
made building outside the source tree work again, Kevin Roth reported
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 4a2561799..5644e0d40 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -4,7 +4,9 @@ AUTOMAKE_OPTIONS = foreign nostdinc -INCLUDES = -I$(top_srcdir)/include +# 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 bin_PROGRAMS = curl #memtest |