[blfs] 03/03: dtc, faac, glu: use --default-library instead of -D default_library

git Owner ([email protected] via blfs-book Mailing List) <[email protected]>
Newsgroups gmane.linux.lfs.beyond.book
Message-ID <[email protected]>
This is an automated email from the git hooks/post-receive script.

git pushed a commit to branch trunk
in repository blfs.

commit 12ad8bafe0cc1dc838be8cbfe214e1bb8455953c
Author: Xi Ruoyao <[email protected]>
AuthorDate: Thu Jul 16 01:38:49 2026 +0800

    dtc, faac, glu: use --default-library instead of -D default_library
    
    meson setup --help shows the former.
---
 general/prog/dtc.xml        | 10 +++++-----
 multimedia/libdriv/faac.xml | 10 +++++-----
 x/lib/glu.xml               |  4 ++--
 3 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/general/prog/dtc.xml b/general/prog/dtc.xml
index 0fe6992625..88495bc270 100644
--- a/general/prog/dtc.xml
+++ b/general/prog/dtc.xml
@@ -104,11 +104,11 @@
 <screen><userinput>mkdir build &amp;&amp;
 cd    build &amp;&amp;
 
-meson setup ..                  \
-      --prefix=/usr             \
-      --buildtype=release       \
-      -D default_library=shared \
-      -D python=disabled        &amp;&amp;
+meson setup ..                 \
+      --prefix=/usr            \
+      --buildtype=release      \
+      --default-library=shared \
+      -D python=disabled       &amp;&amp;
 ninja</userinput></screen>
 
     <para>
diff --git a/multimedia/libdriv/faac.xml b/multimedia/libdriv/faac.xml
index e29e13073d..f72a15299a 100644
--- a/multimedia/libdriv/faac.xml
+++ b/multimedia/libdriv/faac.xml
@@ -84,10 +84,10 @@
 <screen><userinput>mkdir build &amp;&amp;
 cd    build &amp;&amp;
 
-meson setup ..                  \
-      --prefix=/usr             \
-      --buildtype=release       \
-      -D default_library=shared &amp;&amp;
+meson setup ..                 \
+      --prefix=/usr            \
+      --buildtype=release      \
+      --default-library=shared &amp;&amp;
 
 ninja</userinput></screen>
 
@@ -127,7 +127,7 @@ aplay Front_Left.wav</userinput></screen>
     <title>Command Explanations</title>
 
     <para>
-      <parameter>-D default_library=shared</parameter>: prevents building the
+      <parameter>--default-library=shared</parameter>: prevents building the
       static library, which is not needed on a BLFS system.
     </para>
 
diff --git a/x/lib/glu.xml b/x/lib/glu.xml
index 67b3818026..0df87df271 100644
--- a/x/lib/glu.xml
+++ b/x/lib/glu.xml
@@ -97,7 +97,7 @@ meson setup ..              \
       --prefix=$XORG_PREFIX \
       --buildtype=release   \
       -D gl_provider=gl     \
-      -D default_library=shared &amp;&amp;
+      --default-library=shared &amp;&amp;
 ninja</userinput></screen>
 
     <para>
@@ -116,7 +116,7 @@ ninja</userinput></screen>
     <title>Command Explanations</title>
 
     <para>
-      <parameter>-D default_library=shared</parameter>: This switch prevents
+      <parameter>--default-library=shared</parameter>: This switch prevents
        building and installing the static library.
     </para>
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.

-- 
http://lists.linuxfromscratch.org/sympa/info/blfs-book
Unsubscribe: See the above information page
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.