summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorphintuka <phintuka>2010-09-16 13:22:37 +0000
committerphintuka <phintuka>2010-09-16 13:22:37 +0000
commitbc49ed077a9a64d6e2056d58f6965fd22c456378 (patch)
tree23e41ebe9f91c07093b93efe092a5ddcc70f57ee
parent60972696c047f4a5566b87d3d212c7d564f2d132 (diff)
downloadxineliboutput-bc49ed077a9a64d6e2056d58f6965fd22c456378.tar.gz
xineliboutput-bc49ed077a9a64d6e2056d58f6965fd22c456378.tar.bz2
Removed PKG_CONFIG_PATH override
(Thanks to Xavier Bachelot)
-rw-r--r--xine/BluRay/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/xine/BluRay/Makefile b/xine/BluRay/Makefile
index 6ed1c074..8b6b08f3 100644
--- a/xine/BluRay/Makefile
+++ b/xine/BluRay/Makefile
@@ -9,10 +9,10 @@ else
$(warning demux plugin is not compatible with xine-lib-1.2. Track languages are not available.)
endif
-ifeq ($(shell PKG_CONFIG_PATH=/usr/local/lib/pkgconfig/ pkg-config libbluray && echo yes), yes)
+ifeq ($(shell pkg-config libbluray && echo yes), yes)
ENABLE_INPUT_PLUGIN ?= yes
- CFLAGS_BD ?= $(shell PKG_CONFIG_PATH=/usr/local/lib/pkgconfig/ pkg-config libbluray --cflags)
- LIBS_BD ?= $(shell PKG_CONFIG_PATH=/usr/local/lib/pkgconfig/ pkg-config libbluray --libs)
+ CFLAGS_BD ?= $(shell pkg-config libbluray --cflags)
+ LIBS_BD ?= $(shell pkg-config libbluray --libs)
else
ENABLE_INPUT_PLUGIN ?= no
$(warning libbluray not found)