[blfs] branch trunk updated: bookwide: replace -W no-dev with -W no-author

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

git pushed a commit to branch trunk
in repository blfs.

The following commit(s) were added to refs/heads/trunk by this push:
     new eaa0a5cc23 bookwide: replace -W no-dev with -W no-author
eaa0a5cc23 is described below

commit eaa0a5cc234def45dc775fa6c3684622305883dd
Author: Xi Ruoyao <[email protected]>
AuthorDate: Thu Jul 16 10:54:54 2026 +0800

    bookwide: replace -W no-dev with -W no-author
    
    CMake 4.4 emits a deprecation warning for the former.
    
    This change is done via:
    
        sed 's/-W no-dev\( .* \)   \([&\]\)/-W no-author\1\2/' \
            -i $(find -name \*.xml -type f)
        sed 's/-W no-dev/-W no-author/' -i $(find -name \*.xml -type f)
        git checkout -- archive
---
 general/genlib/clucene.xml                        | 4 ++--
 general/genlib/intel-gmmlib.xml                   | 2 +-
 general/genlib/uchardet.xml                       | 2 +-
 general/graphlib/opencv.xml                       | 2 +-
 general/graphlib/tiff.xml                         | 2 +-
 general/graphlib/zxing-cpp.xml                    | 2 +-
 general/prog/doxygen.xml                          | 2 +-
 general/prog/llvm.xml                             | 4 ++--
 gnome/platform/evolution-data-server.xml          | 4 ++--
 kde/kf-apps/add-pkgs.xml                          | 4 ++--
 kde/kf-apps/ark.xml                               | 2 +-
 kde/kf-apps/dolphin-plugins.xml                   | 2 +-
 kde/kf-apps/dolphin.xml                           | 2 +-
 kde/kf-apps/gwenview.xml                          | 2 +-
 kde/kf-apps/k3b.xml                               | 2 +-
 kde/kf-apps/kddockwidgets.xml                     | 2 +-
 kde/kf-apps/kdenlive.xml                          | 2 +-
 kde/kf-apps/khelpcenter.xml                       | 2 +-
 kde/kf-apps/kio-extras.xml                        | 2 +-
 kde/kf-apps/kmix.xml                              | 2 +-
 kde/kf-apps/konsole.xml                           | 2 +-
 kde/kf-apps/konversation.xml                      | 2 +-
 kde/kf-apps/libkcddb.xml                          | 2 +-
 kde/kf-apps/libkdcraw.xml                         | 2 +-
 kde/kf-apps/libkexiv2.xml                         | 2 +-
 kde/kf-apps/okular.xml                            | 2 +-
 kde/kf-apps/plasma-activities-stats.xml           | 2 +-
 kde/kf-apps/plasma-activities.xml                 | 2 +-
 kde/kf6/kf6-frameworks.xml                        | 2 +-
 kde/phonon.xml                                    | 2 +-
 kde/plasma/kquickimageeditor.xml                  | 2 +-
 kde/plasma/plasma-all.xml                         | 2 +-
 kde/plasma/qtkeychain.xml                         | 2 +-
 kde/polkit-qt.xml                                 | 2 +-
 lxqt/desktop/libdbusmenu-lxqt.xml                 | 2 +-
 lxqt/desktop/lxqt-kconfig.xml                     | 2 +-
 lxqt/desktop/lxqt-kidletime.xml                   | 2 +-
 lxqt/desktop/lxqt-kwayland.xml                    | 2 +-
 lxqt/desktop/lxqt-kwindowsystem.xml               | 2 +-
 lxqt/desktop/lxqt-layer-shell.xml                 | 2 +-
 lxqt/desktop/lxqt-libkscreen.xml                  | 2 +-
 lxqt/desktop/lxqt-solid.xml                       | 2 +-
 multimedia/audioutils/kwave.xml                   | 2 +-
 multimedia/libdriv/frei0r.xml                     | 2 +-
 multimedia/libdriv/intel-media.xml                | 2 +-
 multimedia/libdriv/mlt.xml                        | 2 +-
 multimedia/libdriv/sdl2.xml                       | 4 ++--
 multimedia/libdriv/sdl3.xml                       | 4 ++--
 multimedia/libdriv/svt-av1.xml                    | 2 +-
 multimedia/libdriv/x265.xml                       | 4 ++--
 networking/netlibs/kdsoap-ws-discovery-client.xml | 2 +-
 postlfs/editors/kate.xml                          | 2 +-
 server/databases/mariadb.xml                      | 4 ++--
 x/icons/breeze-icons.xml                          | 2 +-
 x/icons/oxygen-icons.xml                          | 2 +-
 x/lib/freeglut.xml                                | 2 +-
 x/lib/webkitgtk.xml                               | 8 ++++----
 xsoft/other/fontforge.xml                         | 4 ++--
 xsoft/other/freerdp.xml                           | 2 +-
 xsoft/other/inkscape.xml                          | 4 ++--
 xsoft/other/tigervnc.xml                          | 4 ++--
 61 files changed, 75 insertions(+), 75 deletions(-)

diff --git a/general/genlib/clucene.xml b/general/genlib/clucene.xml
index df03c62aaa..772ae45c13 100644
--- a/general/genlib/clucene.xml
+++ b/general/genlib/clucene.xml
@@ -108,7 +108,7 @@ cd    build &amp;&amp;
 cmake -D CMAKE_INSTALL_PREFIX=/usr        \
       -D CMAKE_POLICY_VERSION_MINIMUM=3.5 \
       -D BUILD_CONTRIBS_LIB=ON            \
-      -W no-dev ..                        &amp;&amp;
+      -W no-author ..                     &amp;&amp;
 make</userinput></screen>
 
     <para>
@@ -133,7 +133,7 @@ make</userinput></screen>
     </para>
 
     <para>
-      <parameter>-W no-dev</parameter>: This parameter silences several warnings
+      <parameter>-W no-author</parameter>: This parameter silences several warnings
       only intended for project developers.
     </para>
 
diff --git a/general/genlib/intel-gmmlib.xml b/general/genlib/intel-gmmlib.xml
index efeaa9404b..075d3b6b9c 100644
--- a/general/genlib/intel-gmmlib.xml
+++ b/general/genlib/intel-gmmlib.xml
@@ -92,7 +92,7 @@ cd    build &amp;&amp;
 cmake -D CMAKE_INSTALL_PREFIX=/usr \
       -D BUILD_TYPE=Release        \
       -G Ninja                     \
-      -W no-dev ..                 &amp;&amp;
+      -W no-author ..              &amp;&amp;
 ninja</userinput></screen>
 
     <para>
diff --git a/general/genlib/uchardet.xml b/general/genlib/uchardet.xml
index 1d02fc6cf8..f964ce45d9 100644
--- a/general/genlib/uchardet.xml
+++ b/general/genlib/uchardet.xml
@@ -91,7 +91,7 @@ cd    build &amp;&amp;
 cmake -D CMAKE_INSTALL_PREFIX=/usr        \
       -D BUILD_STATIC=OFF                 \
       -D CMAKE_POLICY_VERSION_MINIMUM=3.5 \
-      -W no-dev ..                        &amp;&amp;
+      -W no-author ..                     &amp;&amp;
 make</userinput></screen>
 
     <para>
diff --git a/general/graphlib/opencv.xml b/general/graphlib/opencv.xml
index 74a7838901..2961fd9681 100644
--- a/general/graphlib/opencv.xml
+++ b/general/graphlib/opencv.xml
@@ -187,7 +187,7 @@ cmake -D CMAKE_INSTALL_PREFIX=/usr      \
       -D CMAKE_SKIP_INSTALL_RPATH=ON    \
       -D BUILD_WITH_DEBUG_INFO=OFF      \
       -D OPENCV_GENERATE_PKGCONFIG=ON   \
-      -W no-dev  ..                     &amp;&amp;
+      -W no-author  ..                  &amp;&amp;
 make</userinput></screen>
 
     <para>
diff --git a/general/graphlib/tiff.xml b/general/graphlib/tiff.xml
index 4af484a7ca..ce7cf2b575 100644
--- a/general/graphlib/tiff.xml
+++ b/general/graphlib/tiff.xml
@@ -121,7 +121,7 @@ cd       tiff-build &amp;&amp;
 
 cmake -D CMAKE_INSTALL_PREFIX=/usr \
       -D CMAKE_BUILD_TYPE=Release  \
-      -W no-dev -G Ninja ..
+      -W no-author -G Ninja ..
 ninja</userinput></screen>
 
     <para>
diff --git a/general/graphlib/zxing-cpp.xml b/general/graphlib/zxing-cpp.xml
index f57c918186..11e21c6142 100644
--- a/general/graphlib/zxing-cpp.xml
+++ b/general/graphlib/zxing-cpp.xml
@@ -96,7 +96,7 @@ cmake -D CMAKE_INSTALL_PREFIX=/usr \
       -D ZXING_C_API=OFF           \
       -D ZXING_EXAMPLES=OFF        \
       -D ZXING_WRITERS=BOTH        \
-      -W no-dev ..                 &amp;&amp;
+      -W no-author ..              &amp;&amp;
 make</userinput></screen>
 
     <para>
diff --git a/general/prog/doxygen.xml b/general/prog/doxygen.xml
index 501b93c05f..63e10f631d 100644
--- a/general/prog/doxygen.xml
+++ b/general/prog/doxygen.xml
@@ -149,7 +149,7 @@ cmake -G "Unix Makefiles"          \
       -D CMAKE_INSTALL_PREFIX=/usr \
       -D build_wizard=ON           \
       -D force_qt=Qt6              \
-      -W no-dev .. &amp;&amp;
+      -W no-author .. &amp;&amp;
 make</userinput></screen>
 
     <para>
diff --git a/general/prog/llvm.xml b/general/prog/llvm.xml
index 1fb2903fb8..5615aefae6 100644
--- a/general/prog/llvm.xml
+++ b/general/prog/llvm.xml
@@ -161,7 +161,7 @@ cmake -D CMAKE_INSTALL_PREFIX=/usr           \
       -D LLVM_INCLUDE_BENCHMARKS=OFF         \
       -D CLANG_DEFAULT_PIE_ON_LINUX=ON       \
       -D CLANG_CONFIG_FILE_SYSTEM_DIR=/etc/clang \
-      -W no-dev -G Ninja ..                  &amp;&amp;
+      -W no-author -G Ninja ..               &amp;&amp;
 ninja</userinput></screen>
 <!-- Commented out because myst-parser is not in BLFS and we cannot test
     <para>
@@ -173,7 +173,7 @@ ninja</userinput></screen>
 <screen remap="doc"><userinput>cmake -D LLVM_BUILD_DOCS=ON            \
       -D LLVM_ENABLE_SPHINX=ON         \
       -D SPHINX_WARNINGS_AS_ERRORS=OFF \
-      -W no-dev -G Ninja ..            &amp;&amp;
+      -W no-author -G Ninja ..         &amp;&amp;
 ninja docs-llvm-html  docs-llvm-man</userinput></screen>
 
     <para>
diff --git a/gnome/platform/evolution-data-server.xml b/gnome/platform/evolution-data-server.xml
index bcc1cae768..67f61b02aa 100644
--- a/gnome/platform/evolution-data-server.xml
+++ b/gnome/platform/evolution-data-server.xml
@@ -149,7 +149,7 @@ cmake -D CMAKE_INSTALL_PREFIX=/usr  \
       -D ENABLE_GTK_DOC=OFF         \
       -D WITH_LIBDB=OFF             \
       -D WITH_SYSTEMDUSERUNITDIR=no \
-      -W no-dev -G Ninja ..         &amp;&amp;
+      -W no-author -G Ninja ..      &amp;&amp;
 ninja</userinput></screen>
 
 <screen revision="systemd"><userinput>mkdir build &amp;&amp;
@@ -164,7 +164,7 @@ cmake -D CMAKE_INSTALL_PREFIX=/usr \
       -D ENABLE_INTROSPECTION=ON   \
       -D ENABLE_GTK_DOC=OFF        \
       -D WITH_LIBDB=OFF            \
-      -W no-dev -G Ninja ..        &amp;&amp;
+      -W no-author -G Ninja ..     &amp;&amp;
 ninja</userinput></screen>
 
     <para>
diff --git a/kde/kf-apps/add-pkgs.xml b/kde/kf-apps/add-pkgs.xml
index d3405da2c8..343040434f 100644
--- a/kde/kf-apps/add-pkgs.xml
+++ b/kde/kf-apps/add-pkgs.xml
@@ -69,7 +69,7 @@
        source tree:
     </para>
 
-<screen><userinput>cmake -W no-dev -LH .</userinput></screen>
+<screen><userinput>cmake -W no-author -LH .</userinput></screen>
 
     <para>
       Note that this creates some files in the top of the source directory,
@@ -88,7 +88,7 @@ cd    build &amp;&amp;
 cmake -D CMAKE_INSTALL_PREFIX=$KF6_PREFIX \
       -D CMAKE_BUILD_TYPE=Release         \
       -D BUILD_TESTING=OFF                \
-      -W no-dev .. &amp;&amp;
+      -W no-author .. &amp;&amp;
 make</userinput></screen>
 
   <para>
diff --git a/kde/kf-apps/ark.xml b/kde/kf-apps/ark.xml
index 1f2af8bccc..14aaa07e41 100644
--- a/kde/kf-apps/ark.xml
+++ b/kde/kf-apps/ark.xml
@@ -109,7 +109,7 @@ cd    build &amp;&amp;
 cmake -D CMAKE_INSTALL_PREFIX=$KF6_PREFIX \
       -D CMAKE_BUILD_TYPE=Release         \
       -D BUILD_TESTING=OFF                \
-      -W no-dev .. &amp;&amp;
+      -W no-author .. &amp;&amp;
 make</userinput></screen>
 
     <para>
diff --git a/kde/kf-apps/dolphin-plugins.xml b/kde/kf-apps/dolphin-plugins.xml
index f37c37bc0b..297db733d8 100644
--- a/kde/kf-apps/dolphin-plugins.xml
+++ b/kde/kf-apps/dolphin-plugins.xml
@@ -88,7 +88,7 @@ cd    build &amp;&amp;
 cmake -D CMAKE_INSTALL_PREFIX=$KF6_PREFIX \
       -D CMAKE_BUILD_TYPE=Release         \
       -D BUILD_TESTING=OFF                \
-      -W no-dev .. &amp;&amp;
+      -W no-author .. &amp;&amp;
 make</userinput></screen>
 
     <para>
diff --git a/kde/kf-apps/dolphin.xml b/kde/kf-apps/dolphin.xml
index 0e63d21e83..f56d42dd7e 100644
--- a/kde/kf-apps/dolphin.xml
+++ b/kde/kf-apps/dolphin.xml
@@ -101,7 +101,7 @@ cd    build &amp;&amp;
 cmake -D CMAKE_INSTALL_PREFIX=$KF6_PREFIX \
       -D CMAKE_BUILD_TYPE=Release         \
       -D BUILD_TESTING=OFF                \
-      -W no-dev .. &amp;&amp;
+      -W no-author .. &amp;&amp;
 make</userinput></screen>
 
     <para>
diff --git a/kde/kf-apps/gwenview.xml b/kde/kf-apps/gwenview.xml
index 34cb8c0e30..510c343fbd 100644
--- a/kde/kf-apps/gwenview.xml
+++ b/kde/kf-apps/gwenview.xml
@@ -103,7 +103,7 @@ cd    build &amp;&amp;
 cmake -D CMAKE_INSTALL_PREFIX=$KF6_PREFIX \
       -D CMAKE_BUILD_TYPE=Release         \
       -D BUILD_TESTING=OFF                \
-      -W no-dev .. &amp;&amp;
+      -W no-author .. &amp;&amp;
 make</userinput></screen>
 
     <para>
diff --git a/kde/kf-apps/k3b.xml b/kde/kf-apps/k3b.xml
index eb16fc4911..0592e9c34f 100644
--- a/kde/kf-apps/k3b.xml
+++ b/kde/kf-apps/k3b.xml
@@ -150,7 +150,7 @@ cd    build &amp;&amp;
 cmake -D CMAKE_INSTALL_PREFIX=$KF6_PREFIX \
       -D CMAKE_BUILD_TYPE=Release         \
       -D BUILD_TESTING=OFF                \
-      -W no-dev ..                        &amp;&amp;
+      -W no-author ..                     &amp;&amp;
 make</userinput></screen>
 
     <para>
diff --git a/kde/kf-apps/kddockwidgets.xml b/kde/kf-apps/kddockwidgets.xml
index b332b140cf..085ff62170 100644
--- a/kde/kf-apps/kddockwidgets.xml
+++ b/kde/kf-apps/kddockwidgets.xml
@@ -97,7 +97,7 @@ cd    build &amp;&amp;
 
 cmake -D CMAKE_INSTALL_PREFIX=$KF6_PREFIX \
       -D CMAKE_BUILD_TYPE=Release         \
-      -W no-dev .. &amp;&amp;
+      -W no-author .. &amp;&amp;
 make</userinput></screen>
 
     <para>
diff --git a/kde/kf-apps/kdenlive.xml b/kde/kf-apps/kdenlive.xml
index 42161be94a..1dfc751db1 100644
--- a/kde/kf-apps/kdenlive.xml
+++ b/kde/kf-apps/kdenlive.xml
@@ -106,7 +106,7 @@ cd    build &amp;&amp;
 cmake -D CMAKE_INSTALL_PREFIX=$KF6_PREFIX \
       -D CMAKE_BUILD_TYPE=Release         \
       -D BUILD_TESTING=OFF                \
-      -W no-dev .. &amp;&amp;
+      -W no-author .. &amp;&amp;
 make</userinput></screen>
 
     <note><para>
diff --git a/kde/kf-apps/khelpcenter.xml b/kde/kf-apps/khelpcenter.xml
index ea0b2af5d6..e9f49b7d47 100644
--- a/kde/kf-apps/khelpcenter.xml
+++ b/kde/kf-apps/khelpcenter.xml
@@ -102,7 +102,7 @@ cd    build &amp;&amp;
 cmake -D CMAKE_INSTALL_PREFIX=$KF6_PREFIX \
       -D CMAKE_BUILD_TYPE=Release         \
       -D BUILD_TESTING=OFF                \
-      -W no-dev .. &amp;&amp;
+      -W no-author .. &amp;&amp;
 make</userinput></screen>
 
     <para>
diff --git a/kde/kf-apps/kio-extras.xml b/kde/kf-apps/kio-extras.xml
index d14a2e6ffd..af2f6a71e0 100644
--- a/kde/kf-apps/kio-extras.xml
+++ b/kde/kf-apps/kio-extras.xml
@@ -113,7 +113,7 @@ cd    build &amp;&amp;
 cmake -D CMAKE_INSTALL_PREFIX=$KF6_PREFIX \
       -D CMAKE_BUILD_TYPE=Release         \
       -D BUILD_TESTING=OFF                \
-      -W no-dev .. &amp;&amp;
+      -W no-author .. &amp;&amp;
 make</userinput></screen>
 
     <para>
diff --git a/kde/kf-apps/kmix.xml b/kde/kf-apps/kmix.xml
index 184f8224c4..5aaa4a7c07 100644
--- a/kde/kf-apps/kmix.xml
+++ b/kde/kf-apps/kmix.xml
@@ -100,7 +100,7 @@ cd    build &amp;&amp;
 cmake -D CMAKE_INSTALL_PREFIX=$KF6_PREFIX \
       -D CMAKE_BUILD_TYPE=Release         \
       -D BUILD_TESTING=OFF                \
-      -W no-dev .. &amp;&amp;
+      -W no-author .. &amp;&amp;
 make</userinput></screen>
 
     <para>
diff --git a/kde/kf-apps/konsole.xml b/kde/kf-apps/konsole.xml
index 6d93496844..5ba6e781ac 100644
--- a/kde/kf-apps/konsole.xml
+++ b/kde/kf-apps/konsole.xml
@@ -115,7 +115,7 @@ cd    build &amp;&amp;
 cmake -D CMAKE_INSTALL_PREFIX=$KF6_PREFIX \
       -D CMAKE_BUILD_TYPE=Release         \
       -D BUILD_TESTING=OFF                \
-      -W no-dev .. &amp;&amp;
+      -W no-author .. &amp;&amp;
 make</userinput></screen>
 
     <para>
diff --git a/kde/kf-apps/konversation.xml b/kde/kf-apps/konversation.xml
index b1e824fff7..ec6ac288b1 100644
--- a/kde/kf-apps/konversation.xml
+++ b/kde/kf-apps/konversation.xml
@@ -89,7 +89,7 @@ cd    build &amp;&amp;
 cmake -D CMAKE_INSTALL_PREFIX=$KF6_PREFIX \
       -D CMAKE_BUILD_TYPE=Release         \
       -D BUILD_TESTING=OFF                \
-      -W no-dev .. &amp;&amp;
+      -W no-author .. &amp;&amp;
 make</userinput></screen>
 
     <para>
diff --git a/kde/kf-apps/libkcddb.xml b/kde/kf-apps/libkcddb.xml
index 401d2dcc72..e648ebdaa7 100644
--- a/kde/kf-apps/libkcddb.xml
+++ b/kde/kf-apps/libkcddb.xml
@@ -95,7 +95,7 @@ cmake -D CMAKE_INSTALL_PREFIX=$KF6_PREFIX \
       -D CMAKE_BUILD_TYPE=Release         \
       -D BUILD_TESTING=OFF                \
       -D QT_MAJOR_VERSION=6               \
-      -W no-dev ..                        &amp;&amp;
+      -W no-author ..                     &amp;&amp;
 make</userinput></screen>
 
     <para>
diff --git a/kde/kf-apps/libkdcraw.xml b/kde/kf-apps/libkdcraw.xml
index cf9a750379..66a6e732cc 100644
--- a/kde/kf-apps/libkdcraw.xml
+++ b/kde/kf-apps/libkdcraw.xml
@@ -91,7 +91,7 @@ cmake -D CMAKE_INSTALL_PREFIX=$KF6_PREFIX \
       -D CMAKE_BUILD_TYPE=Release         \
       -D BUILD_TESTING=OFF                \
       -D QT_MAJOR_VERSION=6               \
-      -W no-dev .. &amp;&amp;
+      -W no-author .. &amp;&amp;
 make</userinput></screen>
 
     <para>
diff --git a/kde/kf-apps/libkexiv2.xml b/kde/kf-apps/libkexiv2.xml
index bd3db1f035..555f9329c1 100644
--- a/kde/kf-apps/libkexiv2.xml
+++ b/kde/kf-apps/libkexiv2.xml
@@ -91,7 +91,7 @@ cmake -D CMAKE_INSTALL_PREFIX=$KF6_PREFIX \
       -D CMAKE_BUILD_TYPE=Release         \
       -D BUILD_WITH_QT6=ON                \
       -D BUILD_TESTING=OFF                \
-      -W no-dev .. &amp;&amp;
+      -W no-author .. &amp;&amp;
 make</userinput></screen>
 
     <para>
diff --git a/kde/kf-apps/okular.xml b/kde/kf-apps/okular.xml
index 7397576a5d..3796f1691d 100644
--- a/kde/kf-apps/okular.xml
+++ b/kde/kf-apps/okular.xml
@@ -118,7 +118,7 @@ cmake -D CMAKE_INSTALL_PREFIX=$KF6_PREFIX \
       -D CMAKE_BUILD_TYPE=Release         \
       -D BUILD_TESTING=OFF                \
       -D FORCE_NOT_REQUIRED_DEPENDENCIES="$SKIP_OPTIONAL" \
-      -W no-dev .. &amp;&amp;
+      -W no-author .. &amp;&amp;
 make</userinput></screen>
 
     <para>
diff --git a/kde/kf-apps/plasma-activities-stats.xml b/kde/kf-apps/plasma-activities-stats.xml
index aaae9c59bb..01f38727ca 100644
--- a/kde/kf-apps/plasma-activities-stats.xml
+++ b/kde/kf-apps/plasma-activities-stats.xml
@@ -91,7 +91,7 @@ cd    build &amp;&amp;
 cmake -D CMAKE_INSTALL_PREFIX=$KF6_PREFIX \
       -D CMAKE_BUILD_TYPE=Release         \
       -D BUILD_TESTING=OFF                \
-      -W no-dev .. &amp;&amp;
+      -W no-author .. &amp;&amp;
 make</userinput></screen>
 
     <para>
diff --git a/kde/kf-apps/plasma-activities.xml b/kde/kf-apps/plasma-activities.xml
index f10a736ab5..b11efdad9d 100644
--- a/kde/kf-apps/plasma-activities.xml
+++ b/kde/kf-apps/plasma-activities.xml
@@ -92,7 +92,7 @@ cd    build &amp;&amp;
 cmake -D CMAKE_INSTALL_PREFIX=$KF6_PREFIX \
       -D CMAKE_BUILD_TYPE=Release         \
       -D BUILD_TESTING=OFF                \
-      -W no-dev .. &amp;&amp;
+      -W no-author .. &amp;&amp;
 make</userinput></screen>
 
     <para>
diff --git a/kde/kf6/kf6-frameworks.xml b/kde/kf6/kf6-frameworks.xml
index ea2546e48a..79656e91d7 100644
--- a/kde/kf6/kf6-frameworks.xml
+++ b/kde/kf6/kf6-frameworks.xml
@@ -373,7 +373,7 @@ ln -sfv /usr/lib/systemd    $KF6_PREFIX/lib</userinput></screen>
             -D CMAKE_BUILD_TYPE=Release         \
             -D BUILD_TESTING=OFF                \
             -D BUILD_PYTHON_BINDINGS=OFF        \
-            -W no-dev ..
+            -W no-author ..
       make
       as_root make install
     popd
diff --git a/kde/phonon.xml b/kde/phonon.xml
index 8e586eab7a..be86888759 100644
--- a/kde/phonon.xml
+++ b/kde/phonon.xml
@@ -105,7 +105,7 @@ cd    build &amp;&amp;
 cmake -D CMAKE_INSTALL_PREFIX=/usr \
       -D CMAKE_BUILD_TYPE=Release  \
       -D PHONON_BUILD_QT5=OFF      \
-      -W no-dev .. &amp;&amp;
+      -W no-author .. &amp;&amp;
 make</userinput></screen>
 
     <para>
diff --git a/kde/plasma/kquickimageeditor.xml b/kde/plasma/kquickimageeditor.xml
index 24a683769b..1610fe9714 100644
--- a/kde/plasma/kquickimageeditor.xml
+++ b/kde/plasma/kquickimageeditor.xml
@@ -93,7 +93,7 @@ cd    build &amp;&amp;
 cmake -D CMAKE_INSTALL_PREFIX=$KF6_PREFIX \
       -D CMAKE_BUILD_TYPE=Release         \
       -D BUILD_TESTING=OFF                \
-      -W no-dev ..                        &amp;&amp;
+      -W no-author ..                     &amp;&amp;
 make</userinput></screen>
 
     <para>
diff --git a/kde/plasma/plasma-all.xml b/kde/plasma/plasma-all.xml
index 59e7106dda..bdc1db3b37 100644
--- a/kde/plasma/plasma-all.xml
+++ b/kde/plasma/plasma-all.xml
@@ -367,7 +367,7 @@ EOF</userinput></screen>
              -D CMAKE_BUILD_TYPE=Release         \
              -D BUILD_QT5=OFF                    \
              -D BUILD_TESTING=OFF                \
-             -W no-dev ..  &amp;&amp;
+             -W no-author ..  &amp;&amp;
 
         make
         as_root make install
diff --git a/kde/plasma/qtkeychain.xml b/kde/plasma/qtkeychain.xml
index 2d08352473..6ddc028b25 100644
--- a/kde/plasma/qtkeychain.xml
+++ b/kde/plasma/qtkeychain.xml
@@ -88,7 +88,7 @@ cmake -D CMAKE_INSTALL_PREFIX=$QT6DIR \
       -D CMAKE_BUILD_TYPE=Release     \
       -D BUILD_WITH_QT6=ON            \
       -D BUILD_TESTING=OFF            \
-      -W no-dev ..                    &amp;&amp;
+      -W no-author ..                 &amp;&amp;
 make</userinput></screen>
 
     <para>
diff --git a/kde/polkit-qt.xml b/kde/polkit-qt.xml
index 1142c3e97e..fcc10da71c 100644
--- a/kde/polkit-qt.xml
+++ b/kde/polkit-qt.xml
@@ -91,7 +91,7 @@ cd    build &amp;&amp;
 cmake -D CMAKE_INSTALL_PREFIX=/usr \
       -D CMAKE_BUILD_TYPE=Release  \
       -D QT_MAJOR_VERSION=6        \
-      -W no-dev .. &amp;&amp;
+      -W no-author .. &amp;&amp;
 make</userinput></screen>
 
     <para>
diff --git a/lxqt/desktop/libdbusmenu-lxqt.xml b/lxqt/desktop/libdbusmenu-lxqt.xml
index 6744c16df0..5a46bf523f 100644
--- a/lxqt/desktop/libdbusmenu-lxqt.xml
+++ b/lxqt/desktop/libdbusmenu-lxqt.xml
@@ -95,7 +95,7 @@ cd    build &amp;&amp;
 
 cmake -D CMAKE_INSTALL_PREFIX=/usr \
       -D CMAKE_BUILD_TYPE=Release  \
-      -W no-dev ..                 &amp;&amp;
+      -W no-author ..              &amp;&amp;
 make</userinput></screen>
 
     <para>
diff --git a/lxqt/desktop/lxqt-kconfig.xml b/lxqt/desktop/lxqt-kconfig.xml
index 505f8305e8..36239d3b83 100644
--- a/lxqt/desktop/lxqt-kconfig.xml
+++ b/lxqt/desktop/lxqt-kconfig.xml
@@ -101,7 +101,7 @@ cmake -D CMAKE_INSTALL_PREFIX=/usr        \
       -D CMAKE_INSTALL_LIBEXECDIR=libexec \
       -D KDE_INSTALL_USE_QT_SYS_PATHS=ON  \
       -D BUILD_TESTING=OFF                \
-      -W no-dev ..                        &amp;&amp;
+      -W no-author ..                     &amp;&amp;
 make</userinput></screen>
 
     <para>
diff --git a/lxqt/desktop/lxqt-kidletime.xml b/lxqt/desktop/lxqt-kidletime.xml
index aacd2d1bf2..463106cd64 100644
--- a/lxqt/desktop/lxqt-kidletime.xml
+++ b/lxqt/desktop/lxqt-kidletime.xml
@@ -104,7 +104,7 @@ cmake -D CMAKE_INSTALL_PREFIX=/usr        \
       -D CMAKE_INSTALL_LIBEXECDIR=libexec \
       -D KDE_INSTALL_USE_QT_SYS_PATHS=ON  \
       -D BUILD_TESTING=OFF                \
-      -W no-dev ..                        &amp;&amp;
+      -W no-author ..                     &amp;&amp;
 make</userinput></screen>
 
     <para>
diff --git a/lxqt/desktop/lxqt-kwayland.xml b/lxqt/desktop/lxqt-kwayland.xml
index 97c67fdf7c..b24a34fa71 100644
--- a/lxqt/desktop/lxqt-kwayland.xml
+++ b/lxqt/desktop/lxqt-kwayland.xml
@@ -104,7 +104,7 @@ cmake -D CMAKE_INSTALL_PREFIX=/usr        \
       -D CMAKE_INSTALL_LIBEXECDIR=libexec \
       -D KDE_INSTALL_USE_QT_SYS_PATHS=ON  \
       -D BUILD_TESTING=OFF                \
-      -W no-dev ..                        &amp;&amp;
+      -W no-author ..                     &amp;&amp;
 make</userinput></screen>
 
     <para>
diff --git a/lxqt/desktop/lxqt-kwindowsystem.xml b/lxqt/desktop/lxqt-kwindowsystem.xml
index 871a3f3b87..37ba0916eb 100644
--- a/lxqt/desktop/lxqt-kwindowsystem.xml
+++ b/lxqt/desktop/lxqt-kwindowsystem.xml
@@ -108,7 +108,7 @@ cd    build &amp;&amp;
 cmake -D CMAKE_INSTALL_PREFIX=/usr \
       -D CMAKE_BUILD_TYPE=Release  \
       -D BUILD_TESTING=OFF         \
-      -W no-dev ..                 &amp;&amp;
+      -W no-author ..              &amp;&amp;
 make</userinput></screen>
 
     <para>
diff --git a/lxqt/desktop/lxqt-layer-shell.xml b/lxqt/desktop/lxqt-layer-shell.xml
index dcf9e04438..d24944703a 100644
--- a/lxqt/desktop/lxqt-layer-shell.xml
+++ b/lxqt/desktop/lxqt-layer-shell.xml
@@ -100,7 +100,7 @@ cd    build &amp;&amp;
 
 cmake -D CMAKE_INSTALL_PREFIX=/usr \
       -D CMAKE_BUILD_TYPE=Release  \
-      -W no-dev ..                 &amp;&amp;
+      -W no-author ..              &amp;&amp;
 make</userinput></screen>
 
     <para>
diff --git a/lxqt/desktop/lxqt-libkscreen.xml b/lxqt/desktop/lxqt-libkscreen.xml
index 2d512e0d2f..b2c9c0250c 100644
--- a/lxqt/desktop/lxqt-libkscreen.xml
+++ b/lxqt/desktop/lxqt-libkscreen.xml
@@ -102,7 +102,7 @@ cmake -D CMAKE_INSTALL_PREFIX=/usr        \
       -D CMAKE_INSTALL_LIBEXECDIR=libexec \
       -D KDE_INSTALL_USE_QT_SYS_PATHS=ON  \
       -D BUILD_TESTING=OFF                \
-      -W no-dev ..                        &amp;&amp;
+      -W no-author ..                     &amp;&amp;
 make</userinput></screen>
 
     <para>
diff --git a/lxqt/desktop/lxqt-solid.xml b/lxqt/desktop/lxqt-solid.xml
index ed19d49fcf..ec343bad4e 100644
--- a/lxqt/desktop/lxqt-solid.xml
+++ b/lxqt/desktop/lxqt-solid.xml
@@ -114,7 +114,7 @@ cmake -D CMAKE_INSTALL_PREFIX=/usr        \
       -D CMAKE_INSTALL_LIBEXECDIR=libexec \
       -D KDE_INSTALL_USE_QT_SYS_PATHS=ON  \
       -D BUILD_TESTING=OFF                \
-      -W no-dev ..                        &amp;&amp;
+      -W no-author ..                     &amp;&amp;
 make</userinput></screen>
 
     <para>
diff --git a/multimedia/audioutils/kwave.xml b/multimedia/audioutils/kwave.xml
index b5ce4a0cf4..5306e2373d 100644
--- a/multimedia/audioutils/kwave.xml
+++ b/multimedia/audioutils/kwave.xml
@@ -105,7 +105,7 @@ cd    build &amp;&amp;
 cmake -D CMAKE_INSTALL_PREFIX=$KF6_PREFIX \
       -D CMAKE_BUILD_TYPE=Release         \
       -D BUILD_TESTING=OFF                \
-      -W no-dev .. &amp;&amp;
+      -W no-author .. &amp;&amp;
 make</userinput></screen>
 
     <para>
diff --git a/multimedia/libdriv/frei0r.xml b/multimedia/libdriv/frei0r.xml
index 3febbdb22e..f8bc9c529b 100644
--- a/multimedia/libdriv/frei0r.xml
+++ b/multimedia/libdriv/frei0r.xml
@@ -104,7 +104,7 @@ cd        build &amp;&amp;
 
 cmake -D CMAKE_INSTALL_PREFIX=/usr \
       -D CMAKE_BUILD_TYPE=Release  \
-      -W no-dev .. &amp;&amp;
+      -W no-author .. &amp;&amp;
 
 make</userinput></screen>
 
diff --git a/multimedia/libdriv/intel-media.xml b/multimedia/libdriv/intel-media.xml
index 42dd98a3bb..fdb0ee9c43 100644
--- a/multimedia/libdriv/intel-media.xml
+++ b/multimedia/libdriv/intel-media.xml
@@ -184,7 +184,7 @@ cmake -D CMAKE_INSTALL_PREFIX=$XORG_PREFIX \
       -D BUILD_TYPE=Release                \
       -D MEDIA_BUILD_FATAL_WARNINGS=OFF    \
       -G Ninja                             \
-      -W no-dev ..                         &amp;&amp;
+      -W no-author ..                      &amp;&amp;
 ninja</userinput></screen>
 
 
diff --git a/multimedia/libdriv/mlt.xml b/multimedia/libdriv/mlt.xml
index 2050db6f45..556c8c0ce1 100644
--- a/multimedia/libdriv/mlt.xml
+++ b/multimedia/libdriv/mlt.xml
@@ -124,7 +124,7 @@ cmake -D CMAKE_INSTALL_PREFIX=/usr \
       -D MOD_VIDSTAB=OFF           \
       -D MOD_JACKRACK=OFF          \
       -D MOD_RUBBERBAND=OFF        \
-      -W no-dev .. &amp;&amp;
+      -W no-author .. &amp;&amp;
 make</userinput></screen>
 
     <para>
diff --git a/multimedia/libdriv/sdl2.xml b/multimedia/libdriv/sdl2.xml
index 174fd48b05..efa8a09999 100644
--- a/multimedia/libdriv/sdl2.xml
+++ b/multimedia/libdriv/sdl2.xml
@@ -91,7 +91,7 @@ cmake -D CMAKE_INSTALL_PREFIX=/usr   \
       -D CMAKE_SKIP_INSTALL_RPATH=ON \
       -D SDL2COMPAT_STATIC=OFF       \
       -D SDL2COMPAT_TESTS=OFF        \
-      -W no-dev -G Ninja ..          &amp;&amp;
+      -W no-author -G Ninja ..       &amp;&amp;
 
 ninja</userinput></screen>
 
@@ -120,7 +120,7 @@ cmake -D CMAKE_INSTALL_PREFIX=/usr   \
       -D SDL2COMPAT_INSTALL_TESTS=ON \
       -D SDL2COMPAT_STATIC=OFF       \
       -D SDL2COMPAT_TESTS=ON         \
-      -W no-dev -G Ninja ..          &amp;&amp;
+      -W no-author -G Ninja ..       &amp;&amp;
 
 ninja &amp;&amp;
 DESTDIR=$PWD/TESTS ninja install</userinput></screen>
diff --git a/multimedia/libdriv/sdl3.xml b/multimedia/libdriv/sdl3.xml
index 365495c388..2039c23214 100644
--- a/multimedia/libdriv/sdl3.xml
+++ b/multimedia/libdriv/sdl3.xml
@@ -112,7 +112,7 @@ cmake -D CMAKE_INSTALL_PREFIX=/usr \
       -D SDL_TEST_LIBRARY=OFF      \
       -D SDL_STATIC=OFF            \
       -D SDL_RPATH=OFF             \
-      -W no-dev -G Ninja ..        &amp;&amp;
+      -W no-author -G Ninja ..     &amp;&amp;
 
 ninja</userinput></screen>
 
@@ -140,7 +140,7 @@ cmake -D CMAKE_INSTALL_PREFIX=/usr \
       -D SDL_RPATH=OFF             \
       -D SDL_TESTS=ON              \
       -D SDL_INSTALL_TESTS=ON      \
-      -W no-dev -G Ninja ..        &amp;&amp;
+      -W no-author -G Ninja ..     &amp;&amp;
 
 ninja &amp;&amp;
 DESTDIR=$PWD/TESTS ninja install</userinput></screen>
diff --git a/multimedia/libdriv/svt-av1.xml b/multimedia/libdriv/svt-av1.xml
index 0d28577c7e..11f41fde06 100644
--- a/multimedia/libdriv/svt-av1.xml
+++ b/multimedia/libdriv/svt-av1.xml
@@ -101,7 +101,7 @@ cmake -D CMAKE_INSTALL_PREFIX=/usr   \
       -D CMAKE_BUILD_TYPE=Release    \
       -D CMAKE_SKIP_INSTALL_RPATH=ON \
       -D BUILD_SHARED_LIBS=ON        \
-      -W no-dev -G Ninja .. &amp;&amp;
+      -W no-author -G Ninja .. &amp;&amp;
 
 ninja</userinput></screen>
 
diff --git a/multimedia/libdriv/x265.xml b/multimedia/libdriv/x265.xml
index e635fc2ad4..d84df85a24 100644
--- a/multimedia/libdriv/x265.xml
+++ b/multimedia/libdriv/x265.xml
@@ -105,7 +105,7 @@ cd    bld &amp;&amp;
 
 cmake -D CMAKE_INSTALL_PREFIX=/usr        \
       -D GIT_ARCHETYPE=1                  \
-      -W no-dev                           \
+      -W no-author                        \
       ../source                           &amp;&amp;
 make</userinput></screen>
 
@@ -161,7 +161,7 @@ rm -vf /usr/lib/libx265.a</userinput></screen>
       </para>
 
       <para>
-        <parameter>-W no-dev</parameter>: This switch is used to suppress warnings
+        <parameter>-W no-author</parameter>: This switch is used to suppress warnings
         intended for the package developers.
       </para>
 
diff --git a/networking/netlibs/kdsoap-ws-discovery-client.xml b/networking/netlibs/kdsoap-ws-discovery-client.xml
index cfe6cf2112..75a4fb8046 100644
--- a/networking/netlibs/kdsoap-ws-discovery-client.xml
+++ b/networking/netlibs/kdsoap-ws-discovery-client.xml
@@ -86,7 +86,7 @@ cmake -D CMAKE_INSTALL_PREFIX=/usr    \
       -D CMAKE_BUILD_TYPE=Release     \
       -D CMAKE_SKIP_INSTALL_RPATH=ON  \
       -D QT_MAJOR_VERSION=6           \
-      -W no-dev .. &amp;&amp;
+      -W no-author .. &amp;&amp;
 make</userinput></screen>
 
     <para>
diff --git a/postlfs/editors/kate.xml b/postlfs/editors/kate.xml
index 23ccf68bb4..d549b4f0f5 100644
--- a/postlfs/editors/kate.xml
+++ b/postlfs/editors/kate.xml
@@ -93,7 +93,7 @@ cd    build &amp;&amp;
 cmake -D CMAKE_INSTALL_PREFIX=$KF6_PREFIX  \
       -D CMAKE_BUILD_TYPE=Release          \
       -D BUILD_TESTING=OFF                 \
-      -W no-dev .. &amp;&amp;
+      -W no-author .. &amp;&amp;
 make</userinput></screen>
 
     <para>
diff --git a/server/databases/mariadb.xml b/server/databases/mariadb.xml
index 7c946f5e99..904be02b15 100644
--- a/server/databases/mariadb.xml
+++ b/server/databases/mariadb.xml
@@ -202,7 +202,7 @@ cmake -D CMAKE_BUILD_TYPE=Release                       \
       -D WITH_EMBEDDED_SERVER=ON                        \
       -D SKIP_TESTS=ON                                  \
       -D TOKUDB_OK=0                                    \
-      -W no-dev                                         \
+      -W no-author                                      \
       .. &amp;&amp;
 make</userinput></screen>
 
@@ -279,7 +279,7 @@ mv -v /usr/share/user_map.conf /etc/security</userinput></screen>
     </para>
 
     <para>
-      <parameter>-W no-dev</parameter>: This switch turns off some warnings
+      <parameter>-W no-author</parameter>: This switch turns off some warnings
       that are only useful for developers.
     </para>
 
diff --git a/x/icons/breeze-icons.xml b/x/icons/breeze-icons.xml
index 521a2cc58b..3d12a8979b 100644
--- a/x/icons/breeze-icons.xml
+++ b/x/icons/breeze-icons.xml
@@ -98,7 +98,7 @@ cd    build &amp;&amp;
 cmake -D CMAKE_INSTALL_PREFIX=/usr \
       -D BUILD_TESTING=OFF         \
       -D WITH_ICON_GENERATION=OFF  \
-      -W no-dev ..                 &amp;&amp;
+      -W no-author ..              &amp;&amp;
 make</userinput></screen>
 
     <para>
diff --git a/x/icons/oxygen-icons.xml b/x/icons/oxygen-icons.xml
index 1d1581f73e..17bcae2835 100644
--- a/x/icons/oxygen-icons.xml
+++ b/x/icons/oxygen-icons.xml
@@ -94,7 +94,7 @@
 <screen><userinput>mkdir build &amp;&amp;
 cd    build &amp;&amp;
 
-cmake -D CMAKE_INSTALL_PREFIX=/usr -W no-dev ..</userinput></screen>
+cmake -D CMAKE_INSTALL_PREFIX=/usr -W no-author ..</userinput></screen>
 
     <para>
       This package does not come with a test suite.
diff --git a/x/lib/freeglut.xml b/x/lib/freeglut.xml
index 53f3b2f60e..a5dcb808a9 100644
--- a/x/lib/freeglut.xml
+++ b/x/lib/freeglut.xml
@@ -100,7 +100,7 @@ cmake -D CMAKE_INSTALL_PREFIX=/usr        \
       -D CMAKE_BUILD_TYPE=Release         \
       -D FREEGLUT_BUILD_DEMOS=OFF         \
       -D FREEGLUT_BUILD_STATIC_LIBS=OFF   \
-      -W no-dev .. &amp;&amp;
+      -W no-author .. &amp;&amp;
 make</userinput></screen>
 
     <para>
diff --git a/x/lib/webkitgtk.xml b/x/lib/webkitgtk.xml
index 92a5858c81..b35bc00bf9 100644
--- a/x/lib/webkitgtk.xml
+++ b/x/lib/webkitgtk.xml
@@ -205,7 +205,7 @@ cmake -D CMAKE_BUILD_TYPE=Release     \
       -D ENABLE_BUBBLEWRAP_SANDBOX=ON \
       -D USE_SYSPROF_CAPTURE=NO       \
       -D ENABLE_SPEECH_SYNTHESIS=OFF  \
-      -W no-dev -G Ninja ..           &amp;&amp;
+      -W no-author -G Ninja ..        &amp;&amp;
 ninja</userinput></screen>
 
 <screen revision="sysv"><userinput>mkdir -vp build &amp;&amp;
@@ -228,7 +228,7 @@ cmake -D CMAKE_BUILD_TYPE=Release     \
       -D ENABLE_BUBBLEWRAP_SANDBOX=ON \
       -D USE_SYSPROF_CAPTURE=NO       \
       -D ENABLE_SPEECH_SYNTHESIS=OFF  \
-      -W no-dev -G Ninja ..           &amp;&amp;
+      -W no-author -G Ninja ..        &amp;&amp;
 ninja</userinput></screen>
 
     <para>
@@ -266,7 +266,7 @@ cmake -D CMAKE_BUILD_TYPE=Release         \
       -D ENABLE_BUBBLEWRAP_SANDBOX=ON     \
       -D USE_SYSPROF_CAPTURE=NO           \
       -D ENABLE_SPEECH_SYNTHESIS=OFF      \
-      -W no-dev -G Ninja ..               &amp;&amp;
+      -W no-author -G Ninja ..            &amp;&amp;
 ninja</userinput></screen>
 
 <screen revision="sysv"><userinput>rm -rf * .[^.]* &amp;&amp;
@@ -287,7 +287,7 @@ cmake -D CMAKE_BUILD_TYPE=Release      \
       -D ENABLE_BUBBLEWRAP_SANDBOX=ON  \
       -D USE_SYSPROF_CAPTURE=NO        \
       -D ENABLE_SPEECH_SYNTHESIS=OFF   \
-      -W no-dev -G Ninja ..            &amp;&amp;
+      -W no-author -G Ninja ..         &amp;&amp;
 ninja</userinput></screen>
 
     <para>
diff --git a/xsoft/other/fontforge.xml b/xsoft/other/fontforge.xml
index 2ca193b367..c680f1330b 100644
--- a/xsoft/other/fontforge.xml
+++ b/xsoft/other/fontforge.xml
@@ -128,7 +128,7 @@ cd    build &amp;&amp;
 
 cmake -D CMAKE_INSTALL_PREFIX=/usr \
       -D CMAKE_BUILD_TYPE=Release  \
-      -W no-dev .. &amp;&amp;
+      -W no-author .. &amp;&amp;
 make</userinput></screen>
 
     <para>
@@ -164,7 +164,7 @@ make</userinput></screen>
     </para>
 
     <para>
-      <parameter>-W no-dev</parameter>: This switch is used to suppress warnings
+      <parameter>-W no-author</parameter>: This switch is used to suppress warnings
       intended for the package's developers.
     </para>
 
diff --git a/xsoft/other/freerdp.xml b/xsoft/other/freerdp.xml
index 25778a2866..177308d55d 100644
--- a/xsoft/other/freerdp.xml
+++ b/xsoft/other/freerdp.xml
@@ -149,7 +149,7 @@ cmake -D CMAKE_INSTALL_PREFIX=/usr   \
       -D WITH_SERVER=ON              \
       -D WITH_SERVER_CHANNELS=ON     \
       -D DOCBOOKXSL_DIR=/usr/share/xml/docbook/xsl-stylesheets-nons-&docbook-xsl-version; \
-      -W no-dev                      \
+      -W no-author                   \
       -G Ninja ..                    &amp;&amp;
 ninja</userinput></screen>
 
diff --git a/xsoft/other/inkscape.xml b/xsoft/other/inkscape.xml
index 37368c8fe6..dd66c618e7 100644
--- a/xsoft/other/inkscape.xml
+++ b/xsoft/other/inkscape.xml
@@ -171,7 +171,7 @@ cd    build                        &amp;&amp;
 cmake -D CMAKE_INSTALL_PREFIX=/usr \
       -D CMAKE_BUILD_TYPE=Release  \
       -D WITH_INTERNAL_2GEOM=ON    \
-      -W no-dev                    \
+      -W no-author                 \
       ..                           &amp;&amp;
 make</userinput></screen>
 
@@ -220,7 +220,7 @@ make</userinput></screen>
     </para>
 
     <para>
-      <parameter>-W no-dev</parameter>: This parameter silences several warnings
+      <parameter>-W no-author</parameter>: This parameter silences several warnings
       only intended for project developers.
     </para>
 
diff --git a/xsoft/other/tigervnc.xml b/xsoft/other/tigervnc.xml
index 0c926848e6..a2da0d032e 100644
--- a/xsoft/other/tigervnc.xml
+++ b/xsoft/other/tigervnc.xml
@@ -182,7 +182,7 @@ cmake -G "Unix Makefiles"          \
       -D CMAKE_INSTALL_PREFIX=/usr \
       -D CMAKE_BUILD_TYPE=Release  \
       -D INSTALL_SYSTEMD_UNITS=OFF \
-      -W no-dev .                  &amp;&amp;
+      -W no-author .               &amp;&amp;
 make                               &amp;&amp;
 
 # Build server
@@ -219,7 +219,7 @@ popd                                           &amp;&amp;
 cmake -G "Unix Makefiles"          \
       -D CMAKE_INSTALL_PREFIX=/usr \
       -D CMAKE_BUILD_TYPE=Release  \
-      -W no-dev .                  &amp;&amp;
+      -W no-author .               &amp;&amp;
 make                               &amp;&amp;
 
 # Build server

-- 
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.