diff options
author | anssih <anssih@svn> | 2010-06-10 22:43:09 +0000 |
---|---|---|
committer | anssih <anssih@svn> | 2010-06-10 22:43:09 +0000 |
commit | e021e3d4093f4d7aa2f2cc60ac984f8e56293fd1 (patch) | |
tree | 14600aa404ba7e9fd84af97615d7bb5e74d2b651 /Makefile.in | |
parent | 6e48dfb329c8bbe4adabef5c63f5543caaa52054 (diff) |
fixed: obey LDFLAGS in some places where it was previously disregarded
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@31019 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 2a234b6513..ac5493af5c 100644 --- a/Makefile.in +++ b/Makefile.in @@ -489,7 +489,7 @@ ifeq ($(findstring osx,$(ARCH)), osx) # so only exclude it for osx builds @echo "excluding xbmc-xrandr" else - $(CC) $(CFLAGS) -o xbmc-xrandr xbmc-xrandr.c -lXrandr -lXrender -lX11 + $(CC) $(CFLAGS) $(LDFLAGS) -o xbmc-xrandr xbmc-xrandr.c -lXrandr -lXrender -lX11 endif tools/XBMCTex/XBMCTex: |