diff options
author | Michael Stahl <mstahl@redhat.com> | 2017-02-01 21:20:57 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2017-02-01 21:21:59 +0100 |
commit | e95765027e183728cf830ee0c120df29ce04c0d3 (patch) | |
tree | c66d83aec2ecf90552430df104b6f08197bc829f /odk | |
parent | 616e19fc25848e5b35d9a252cd20b7c16262824d (diff) |
odk: don't run make with LD_LIBRARY_PATH set
In a build with -fsanitize=address, this fails with:
Change-Id: If8581363a395af78bbbe00dd656290aea53af330
make: symbol lookup error: instdir/program/libfreebl3.so: undefined symbol: __asan_option_detect_stack_use_after_return
Diffstat (limited to 'odk')
-rw-r--r-- | odk/CustomTarget_build-examples.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/odk/CustomTarget_build-examples.mk b/odk/CustomTarget_build-examples.mk index b9c5c534a764..ea4eb3b0381b 100644 --- a/odk/CustomTarget_build-examples.mk +++ b/odk/CustomTarget_build-examples.mk @@ -91,6 +91,7 @@ $(call gb_CustomTarget_get_target,odk/build-examples): \ $(call gb_CustomTarget_get_workdir,odk/build-examples)/setsdkenv $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),CHK,1) (. $< \ + && unset LD_LIBRARY_PATH \ && export \ UserInstallation=$(call gb_Helper_make_url,$(call gb_CustomTarget_get_workdir,odk/build-examples)/user) \ $(foreach my_dir,$(my_example_dirs), \ |