diff options
author | jstebbins <[email protected]> | 2015-01-15 19:16:25 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2015-01-15 19:16:25 +0000 |
commit | af84ef431938c7dfa43ecebedab95b4c7de8c5f6 (patch) | |
tree | 53d9a96bd68af27ffc5a6f0dcf9fdbc78d1438e3 /contrib/libgnurx | |
parent | b3e37a702ac87ddec82010a0e2a88d47ee00a7dc (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/libgnurx')
-rw-r--r-- | contrib/libgnurx/module.defs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/libgnurx/module.defs b/contrib/libgnurx/module.defs index 3d73829f7..e8e2ebe0c 100644 --- a/contrib/libgnurx/module.defs +++ b/contrib/libgnurx/module.defs @@ -22,6 +22,6 @@ define LIBGNURX.UNINSTALL endef ifeq (1,$(FEATURE.local_pkgconfig)) - LIBGNURX.CONFIGURE.env = PATH="$(call fn.ABSOLUTE,$(CONTRIB.build/)bin):$(PATH)" - LIBGNURX.BUILD.env = PATH="$(call fn.ABSOLUTE,$(CONTRIB.build/)bin):$(PATH)" + LIBGNURX.CONFIGURE.env += PATH="$(call fn.ABSOLUTE,$(CONTRIB.build/)bin):$(PATH)" + LIBGNURX.BUILD.env += PATH="$(call fn.ABSOLUTE,$(CONTRIB.build/)bin):$(PATH)" endif |