Avoid complex shell constructs.
Don't use subshells when not needed. Don't use `|| :' to hide errors.
This commit is contained in:
parent
f20c318f75
commit
37b5e6be81
10
glibc.spec
10
glibc.spec
@ -863,7 +863,7 @@ gzip -9nvf $RPM_BUILD_ROOT%{_infodir}/libc*
|
|||||||
%ifnarch %{auxarches}
|
%ifnarch %{auxarches}
|
||||||
olddir=`pwd`
|
olddir=`pwd`
|
||||||
pushd ${RPM_BUILD_ROOT}%{_prefix}/lib/locale
|
pushd ${RPM_BUILD_ROOT}%{_prefix}/lib/locale
|
||||||
rm locale-archive || :
|
rm -f locale-archive
|
||||||
# Intentionally we do not pass --alias-file=, aliases will be added
|
# Intentionally we do not pass --alias-file=, aliases will be added
|
||||||
# by build-locale-archive.
|
# by build-locale-archive.
|
||||||
$olddir/build-%{target}/elf/ld.so \
|
$olddir/build-%{target}/elf/ld.so \
|
||||||
@ -1244,8 +1244,12 @@ popd
|
|||||||
|
|
||||||
# The #line directives gperf generates do not give the proper
|
# The #line directives gperf generates do not give the proper
|
||||||
# file name relative to the build directory.
|
# file name relative to the build directory.
|
||||||
(cd locale; ln -s programs/*.gperf .)
|
pushd locale
|
||||||
(cd iconv; ln -s ../locale/programs/charmap-kw.gperf .)
|
ln -s programs/*.gperf .
|
||||||
|
popd
|
||||||
|
pushd iconv
|
||||||
|
ln -s ../locale/programs/charmap-kw.gperf .
|
||||||
|
popd
|
||||||
|
|
||||||
# Print some diagnostic information in the builds about the
|
# Print some diagnostic information in the builds about the
|
||||||
# getconf binaries.
|
# getconf binaries.
|
||||||
|
Loading…
Reference in New Issue
Block a user