From: Ray Strode Date: Thu, 11 May 2017 02:23:54 +0000 (-0400) Subject: man: fix LD_LIBRARY_PATH example in environment.d (#5929) X-Git-Tag: v234~221 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=af92daebc593eb4865e1a1e6fcd560cf36d278e9;p=thirdparty%2Fsystemd.git man: fix LD_LIBRARY_PATH example in environment.d (#5929) The example for LD_LIBRARY_PATH in the environment.d man page is wrong. When setting LD_LIBRARY_PATH, the new directory usually needs to be at the front so it overrides old directories. In the example, the colon delimiter is correctly prepended to the front, but the actual new path is erroneously appended to the end. This commit moves it to the front where it belongs. --- diff --git a/man/environment.d.xml b/man/environment.d.xml index 78b949160b4..ad9db1666f4 100644 --- a/man/environment.d.xml +++ b/man/environment.d.xml @@ -104,7 +104,7 @@ FOO_DEBUG=force-software-gl,log-verbose PATH=/opt/foo/bin:$PATH - LD_LIBRARY_PATH=${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}/opt/foo/lib + LD_LIBRARY_PATH=/opt/foo/lib${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH} XDG_DATA_DIRS=/opt/foo/share:${XDG_DATA_DIRS:-/usr/local/share/:/usr/share/}