diff options
author | pbrook <pbrook@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-12-02 00:42:12 +0000 |
---|---|---|
committer | pbrook <pbrook@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-12-02 00:42:12 +0000 |
commit | 2ff3e0d06b3d78d3454fae2b24e40532f2faad6e (patch) | |
tree | 0c72ff80893a2bf936d885b1a7ec2857f642283c /libgfortran/Makefile.am | |
parent | bc4b7c3dbe46728abb59ff1ae15d4ed3447e7e58 (diff) | |
download | gcc-2ff3e0d06b3d78d3454fae2b24e40532f2faad6e.tar.gz |
2004-12-01 Aaron W. LaFramboise <aaronavay62@aaronwl.com>
* Makefile.am (AM_CPPFLAGS): Use -iquote instead of -I.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@91602 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgfortran/Makefile.am')
-rw-r--r-- | libgfortran/Makefile.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libgfortran/Makefile.am b/libgfortran/Makefile.am index 50a3dacb144..d93b5f308b7 100644 --- a/libgfortran/Makefile.am +++ b/libgfortran/Makefile.am @@ -13,7 +13,9 @@ libgfortran_la_LDFLAGS = -version-info `grep -v '^\#' $(srcdir)/libtool-version` libgfortranbegin_la_SOURCES = fmain.c libgfortranbegin_la_LDFLAGS = -static -AM_CPPFLAGS = -I$(srcdir)/io +## io.h conflicts with some a system header on some platforms, so +## use -iquote +AM_CPPFLAGS = -iquote$(srcdir)/io libgfortranincludedir = $(includedir)/gforio |