From 8f8a074de0ffa7c4d26ff9c9ef84941a0530055d Mon Sep 17 00:00:00 2001 From: Riccardo Schirone Date: Wed, 9 Dec 2020 16:44:25 +0100 Subject: [PATCH] Just add /usr/local/bin to path instead of symlink --- .builds/openbsd.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.builds/openbsd.yml b/.builds/openbsd.yml index fca9641bd9..0685baf24d 100644 --- a/.builds/openbsd.yml +++ b/.builds/openbsd.yml @@ -27,12 +27,9 @@ tasks: ninja -C build install - unittest: | cd rizin - export PATH=${HOME}/bin:${PATH} + export PATH=${HOME}/bin:/usr/local/bin:${PATH} export LD_LIBRARY_PATH=${HOME}/lib:${HOME}/lib64:${LD_LIBRARY_PATH} export PKG_CONFIG_PATH=${HOME}/lib/pkgconfig:${PKG_CONFIG_PATH} - # OpenBSD does not have a "python3" command by default - # but a test needs it. - ln -s /usr/local/bin/python3 ${HOME}/bin/python3 # Workaround until the feature request is solved # https://todo.sr.ht/~sircmpwn/builds.sr.ht/274 ln -s ${HOME}/rizin-testbins test/bins @@ -40,12 +37,9 @@ tasks: ninja -C build test - test: | cd rizin - export PATH=${HOME}/bin:${PATH} + export PATH=${HOME}/bin:/usr/local/bin:${PATH} export LD_LIBRARY_PATH=${HOME}/lib:${HOME}/lib64:${LD_LIBRARY_PATH} export PKG_CONFIG_PATH=${HOME}/lib/pkgconfig:${PKG_CONFIG_PATH} - # OpenBSD does not have a "python3" command by default - # but a test needs it. - ln -s /usr/local/bin/python3 ${HOME}/bin/python3 # Workaround until the feature request is solved # https://todo.sr.ht/~sircmpwn/builds.sr.ht/274 ln -s ${HOME}/rizin-testbins test/bins