summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Privoznik <mprivozn@redhat.com>2016-02-11 13:51:13 +0100
committerDave Airlie <airlied@redhat.com>2016-02-15 10:20:51 +1000
commitd713cd1c9c167fd5e7c885f0bad9d1894519e95d (patch)
tree834c3880bb2666db5471b01e7b14a8e9689260e0
parent77ad82dcf643100e415b30c6f4ecc96a11066603 (diff)
src: Drop useless -I from AM_LDFLAGS in Makefile
The -I switch is meant for extending the list of paths searched when looking for a header file. There's no justification in having in linker flags. Signed-off-by: Michal Privoznik <mprivozn@redhat.com> Acked-by: Marc-André Lureau <marcandre.lureau@redhat.com> Signed-off-by: Dave Airlie <airlied@redhat.com>
-rw-r--r--src/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 61cf879..8f6538a 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -1,5 +1,5 @@
SUBDIRS := gallium/auxiliary
-AM_LDFLAGS = -lgbm -lm -ldl -I./gallium/include \
+AM_LDFLAGS = -lgbm -lm -ldl \
$(EPOXY_LIBS) \
$(CODE_COVERAGE_LDFLAGS)