summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)