]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
mkosi: Fix comment
authorDaan De Meyer <daan.j.demeyer@gmail.com>
Mon, 3 Jun 2024 10:57:57 +0000 (12:57 +0200)
committerDaan De Meyer <daan.j.demeyer@gmail.com>
Mon, 3 Jun 2024 10:58:16 +0000 (12:58 +0200)
mkosi.images/system/mkosi.sanitizers.chroot

index 48c5d147aa598edaf49e71e6e9fc31b2272e5d24..854a419933b68acd547ead9f23812c659bcae0cb 100755 (executable)
@@ -25,11 +25,7 @@ ASAN_RT_PATH="$(grep libasan.so < <(ldd /usr/lib/systemd/systemd) | cut -d ' ' -
 if [[ -z "$ASAN_RT_PATH" ]]; then
     ASAN_RT_PATH="$(grep libclang_rt.asan < <(ldd /usr/lib/systemd/systemd) | cut -d ' ' -f 3)"
 
-    # As clang's ASan DSO is usually in a non-standard path, let's check if
-    # the environment is set accordingly. If not, warn the user and exit.
-    # We're not setting the LD_LIBRARY_PATH automagically here, because
-    # user should encounter (and fix) the same issue when running the unit
-    # tests (meson test)
+    # As clang's ASan DSO is usually in a non-standard path, let's check if the RUNPATH is set accordingly.
     if ldd /usr/lib/systemd/systemd | grep -q "libclang_rt.asan.*not found"; then
         echo >&2 "clang's ASan DSO libclang_rt.asan is not present in the runtime library path"
         exit 1