From 3522efe0467d292d69b3aef217407291dd11c068 Mon Sep 17 00:00:00 2001 From: Xi Ruoyao Date: Thu, 3 Mar 2022 00:33:44 +0800 Subject: package updates * Update to meson-0.61.2. * Update to linux-5.16.12. * Update to MarkupSafe-2.1.0. * Update to dbus-1.14.0. * Update to vim-8.2.4489. --- chapter08/meson.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'chapter08') diff --git a/chapter08/meson.xml b/chapter08/meson.xml index 36d787185..ffd4153b0 100644 --- a/chapter08/meson.xml +++ b/chapter08/meson.xml @@ -56,7 +56,7 @@ python3 setup.py build - This package does not come with a test suite. + The test suite requires some packages out of the scope of LFS. Install the package: -- cgit v1.2.3-54-g00ecf From 9c4380393eb32dde391a26e83e358f1a9a1939f2 Mon Sep 17 00:00:00 2001 From: Xi Ruoyao Date: Sat, 5 Mar 2022 03:03:19 +0800 Subject: gcc: use $(gcc -dumpmachine) instead of *linux-gnu It's consistent with other commands in the same page, and also helpful for porting to targets with different triplets (-musl or -gnuabi64). --- chapter08/gcc.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'chapter08') diff --git a/chapter08/gcc.xml b/chapter08/gcc.xml index 4c62a8d17..16bb5f99f 100644 --- a/chapter08/gcc.xml +++ b/chapter08/gcc.xml @@ -174,7 +174,7 @@ rm -rf /usr/lib/gcc/$(gcc -dumpmachine)/&gcc-version;/include-fixed/bits/root user and group: chown -v -R root:root \ - /usr/lib/gcc/*linux-gnu/&gcc-version;/include{,-fixed} + /usr/lib/gcc/$(gcc -dumpmachine)/&gcc-version;/include{,-fixed} Create a symlink required by the FHS -- cgit v1.2.3-54-g00ecf