summaryrefslogtreecommitdiffstats
path: root/contrib/libdvdnav
diff options
context:
space:
mode:
authorjstebbins <[email protected]>2015-01-15 19:16:25 +0000
committerjstebbins <[email protected]>2015-01-15 19:16:25 +0000
commitaf84ef431938c7dfa43ecebedab95b4c7de8c5f6 (patch)
tree53d9a96bd68af27ffc5a6f0dcf9fdbc78d1438e3 /contrib/libdvdnav
parentb3e37a702ac87ddec82010a0e2a88d47ee00a7dc (diff)
build: fix configure environment of several contribs
Incorrect build environment caused a failure to disable asserts in libdvdnav which leads to crashes. Probably other undesirable side effects as well. git-svn-id: svn://svn.handbrake.fr/HandBrake/branches/0.10.x@6757 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'contrib/libdvdnav')
-rw-r--r--contrib/libdvdnav/module.defs4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/libdvdnav/module.defs b/contrib/libdvdnav/module.defs
index b6ba27a66..27f171be8 100644
--- a/contrib/libdvdnav/module.defs
+++ b/contrib/libdvdnav/module.defs
@@ -9,6 +9,6 @@ ifneq (max,$(LIBDVDNAV.GCC.g))
endif
ifeq (1,$(FEATURE.local_pkgconfig))
- LIBDVDNAV.CONFIGURE.env = PATH="$(call fn.ABSOLUTE,$(CONTRIB.build/)bin):$(PATH)"
- LIBDVDNAV.BUILD.env = PATH="$(call fn.ABSOLUTE,$(CONTRIB.build/)bin):$(PATH)"
+ LIBDVDNAV.CONFIGURE.env += PATH="$(call fn.ABSOLUTE,$(CONTRIB.build/)bin):$(PATH)"
+ LIBDVDNAV.BUILD.env += PATH="$(call fn.ABSOLUTE,$(CONTRIB.build/)bin):$(PATH)"
endif