Module: Mesa Branch: master Commit: 9895f7724991b9aac98ab482446163f928d49448 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=9895f7724991b9aac98ab482446163f928d49448
Author: Matt Turner <[email protected]> Date: Fri Jan 27 00:33:10 2012 -0500 i965/automake: use $top_srcdir instead of relative links Fixes out-of-tree builds. --- src/mesa/drivers/dri/i965/Makefile.am | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mesa/drivers/dri/i965/Makefile.am b/src/mesa/drivers/dri/i965/Makefile.am index 5b75dbc..4f6280d 100644 --- a/src/mesa/drivers/dri/i965/Makefile.am +++ b/src/mesa/drivers/dri/i965/Makefile.am @@ -31,9 +31,9 @@ AM_CFLAGS = \ -I$(top_srcdir)/src/ \ -I$(top_srcdir)/src/mapi \ -I$(top_srcdir)/src/mesa/ \ - -I../common \ - -I../intel \ - -I../intel/server \ + -I$(top_srcdir)/src/mesa/drivers/dri/common \ + -I$(top_srcdir)/src/mesa/drivers/dri/intel \ + -I$(top_srcdir)/src/mesa/drivers/dri/intel/server \ $(DEFINES) \ $(ASM_FLAGS) \ $(API_DEFINES) \ _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
