diff options
author | Timo Sirainen <cras@irssi.org> | 2001-11-05 14:48:03 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2001-11-05 14:48:03 +0000 |
commit | 6a82e806b4d8ae146295c5b3d8fe4986f8ff747e (patch) | |
tree | e389a05d390b3b80114e8432707103e2ac6d8e18 /src/lib-config | |
parent | a6e9d7dfb798cf4624b0274c68fa11fcb64e58c5 (diff) | |
download | irssi-6a82e806b4d8ae146295c5b3d8fe4986f8ff747e.zip |
Moved $(GLIB_CFLAGS) after -I includes, to make sure our own .h files get before possibly identically named headers in the glib's include directory.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1975 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/lib-config')
-rw-r--r-- | src/lib-config/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib-config/Makefile.am b/src/lib-config/Makefile.am index 3907ac3d..f8acdbd9 100644 --- a/src/lib-config/Makefile.am +++ b/src/lib-config/Makefile.am @@ -1,8 +1,8 @@ noinst_LIBRARIES = libirssi_config.a INCLUDES = \ - $(GLIB_CFLAGS) \ - -I$(top_srcdir)/src + -I$(top_srcdir)/src \ + $(GLIB_CFLAGS) libirssi_config_a_SOURCES = \ get.c \ |