diff options
author | Daniel Jacobowitz <drow@false.org> | 2006-03-31 22:51:14 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2006-03-31 22:51:14 +0000 |
commit | c9e665fb113e46e0603c73f88496f6bed054f5fc (patch) | |
tree | 23b23b6bfcd9704d515fff6ea6f476e6c960106e | |
parent | 5fef4d03709b6cddce1ede51556a439b62d1972e (diff) | |
download | gdb-c9e665fb113e46e0603c73f88496f6bed054f5fc.zip gdb-c9e665fb113e46e0603c73f88496f6bed054f5fc.tar.gz gdb-c9e665fb113e46e0603c73f88496f6bed054f5fc.tar.bz2 |
Correct path to expat headers.
-rw-r--r-- | gdb/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 8176134..27debb6 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -129,7 +129,7 @@ READLINE_CFLAGS = -I$(READLINE_SRC)/.. # Where is the expat library? Typically in ../expat. EXPAT = ../expat/.libs/libexpat.a -EXPAT_CFLAGS = -I$(srcdir)/expat/lib -I../expat +EXPAT_CFLAGS = -I$(srcdir)/../expat/lib -I../expat WARN_CFLAGS = @WARN_CFLAGS@ WERROR_CFLAGS = @WERROR_CFLAGS@ |