diff options
author | Dan Nicholson <[email protected]> | 2010-07-01 12:58:57 -0700 |
---|---|---|
committer | Dan Nicholson <[email protected]> | 2010-07-01 13:00:02 -0700 |
commit | 442c37e2ef57d8dcf88c91d457df7f6516d76264 (patch) | |
tree | 611718df956e87ed64f844f185adb314be66f6e7 /src/glw | |
parent | 9617254a1e5522615c96ab25c9e0a70e0d63d7e7 (diff) |
Use GLW_CFLAGS when building libGLw
We check for libX11 and libXt, so we might as well use the CFLAGS
pkg-config tells us about.
Diffstat (limited to 'src/glw')
-rw-r--r-- | src/glw/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glw/Makefile b/src/glw/Makefile index 1fb3d3c3202..39352f05320 100644 --- a/src/glw/Makefile +++ b/src/glw/Makefile @@ -17,7 +17,7 @@ OBJECTS = $(GLW_SOURCES:.c=.o) ##### RULES ##### .c.o: - $(CC) -c $(INCDIRS) $(CFLAGS) $< + $(CC) -c $(INCDIRS) $(CFLAGS) $(GLW_CFLAGS) $< |