diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2019-12-10 22:43:13 +0000 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2019-12-10 22:43:13 +0000 |
commit | ce2c730d5b399ea6e75e8cac6d67cbdca14c6f7e (patch) | |
tree | 1681a62d9348f2a11ea300bff3485014434024b7 | |
parent | 1a96e748cbd53e2434788d029e279765a804bfc6 (diff) |
Fix meson sed
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@11709 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r-- | chapter06/meson.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chapter06/meson.xml b/chapter06/meson.xml index db3d67afc..5a8779a91 100644 --- a/chapter06/meson.xml +++ b/chapter06/meson.xml @@ -42,7 +42,7 @@ <para>Apply a fix from upstream to fix a regression:</para> -<screen><userinput remap="pre">sed -i "s@isfile(f)@& and not f.startswith('/dev')@" mesonbuild/interpreter.py</userinput></screen> +<screen><userinput remap="pre">sed -i "s@isfile(a)@& and not a.startswith('/dev')@" mesonbuild/interpreter.py</userinput></screen> <para>Compile Meson with the following command:</para> |