diff options
author | Sam James <sam@gentoo.org> | 2023-04-30 03:58:53 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-04-30 03:59:56 +0100 |
commit | 22b58d511521fea50e0f6797a39b1750b3764c85 (patch) | |
tree | 63c2d443394a7b18176f4fbae83f31869b5dda4d /gcc-config | |
parent | gcc-config: Use relative paths for liblto and cc symlink targets (diff) | |
download | gcc-config-22b58d511521fea50e0f6797a39b1750b3764c85.tar.gz gcc-config-22b58d511521fea50e0f6797a39b1750b3764c85.tar.bz2 gcc-config-22b58d511521fea50e0f6797a39b1750b3764c85.zip |
gcc-config: Add missing terminating quote for 'backing up' path message
Cosmetic.
Before: * Backing up '//usr/lib/gcc/hppa2.0-unknown-linux-gnu/12/libgcc_s.so.4' to '/lib
After: * Backing up '//usr/lib/gcc/hppa2.0-unknown-linux-gnu/12/libgcc_s.so.4' to '/lib'
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'gcc-config')
-rwxr-xr-x | gcc-config | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -426,7 +426,7 @@ handle_split_usr() { # but for now, that should be safe ... for gcclib in "${ROOT}${LDPATH}"/lib${gcclib}.so.* ; do [[ -e ${gcclib} ]] || continue - einfo "Backing up '${gcclib}' to '${libdir}" + einfo "Backing up '${gcclib}' to '${libdir}'" cp -pP "${gcclib}" "${libdir}"/.gcc.config.new/ # no need to sanity `rm` this as the `mv` should take care # of it. we also need this step to be completely atomic |