New commits:
commit 4974342efe5b77271814d233a5f6462a6b122b87
Author: Pavel Vinogradov <public AT sourcemage.org>
Commit: Pavel Vinogradov <public AT sourcemage.org>
if spell_ok texinfo; then
- cp bashref.info ${INSTALL_ROOT}/usr/share/info/bash.info &&
- install-info --info-dir=${INSTALL_ROOT}/usr/share/info \
- ${INSTALL_ROOT}/usr/share/info/bash.info
+ cp bashref.info "${INSTALL_ROOT}/usr/share/info/bash.info" &&
+ install-info --info-dir="${INSTALL_ROOT}/usr/share/info" \
+ "${INSTALL_ROOT}/usr/share/info/bash.info"
fi &&
#
@@ -40,53 +23,53 @@ fi &&
# Install etc/profile.d scripts
#
for i in dummy lc.sh; do
- if install_config_file $SCRIPT_DIRECTORY/profile.d/$i \
- $INSTALL_ROOT/etc/profile.d/$i; then
- chmod 0755 $INSTALL_ROOT/etc/profile.d/$i
+ if install_config_file "${SCRIPT_DIRECTORY}/profile.d/$i" \
+ "${INSTALL_ROOT}/etc/profile.d/$i"; then
+ chmod 0755 "${INSTALL_ROOT}/etc/profile.d/$i"
fi
done &&
#Install configuration file for the lc.sh script
-install_config_file $SCRIPT_DIRECTORY/profile.d/locale.conf \
- $INSTALL_ROOT/etc/sysconfig/locale &&
+install_config_file "${SCRIPT_DIRECTORY}/profile.d/locale.conf" \
+ "${INSTALL_ROOT}/etc/sysconfig/locale" &&
-if install_config_file $SCRIPT_DIRECTORY/profile \
- $INSTALL_ROOT/etc/profile; then
- chmod 0755 $INSTALL_ROOT/etc/profile
+if install_config_file "${SCRIPT_DIRECTORY}/profile" \
+ "${INSTALL_ROOT}/etc/profile"; then
+ chmod 0755 "${INSTALL_ROOT}/etc/profile"
fi &&
#
# Bug #9672
#
-if install_config_file $SCRIPT_DIRECTORY/bashrc \
- $INSTALL_ROOT/etc/bashrc; then
- chmod 0755 $INSTALL_ROOT/etc/bashrc
+if install_config_file "${SCRIPT_DIRECTORY}/bashrc" \
+ "${INSTALL_ROOT}/etc/bashrc"; then
+ chmod 0755 "${INSTALL_ROOT}/etc/bashrc"
fi &&
#
# Bug #9673
#
-if install_config_file $SCRIPT_DIRECTORY/skel/bash_profile \
- $INSTALL_ROOT/etc/skel/.bash_profile; then
- chmod 0755 $INSTALL_ROOT/etc/skel/.bash_profile
+if install_config_file "${SCRIPT_DIRECTORY}/skel/bash_profile" \
+ "${INSTALL_ROOT}/etc/skel/.bash_profile"; then
+ chmod 0755 "${INSTALL_ROOT}/etc/skel/.bash_profile"
fi &&
#
# Bug #9626
# bashrc should not symlink to bash_profile
#
-if [ -h $INSTALL_ROOT/etc/skel/.bashrc ]; then
- rm -f $INSTALL_ROOT/etc/skel/.bashrc
+if [ -h "${TRACK_ROOT}/etc/skel/.bashrc" ]; then
+ rm -f "${TRACK_ROOT}/etc/skel/.bashrc"
fi &&
-if install_config_file $SCRIPT_DIRECTORY/skel/bashrc \
- $INSTALL_ROOT/etc/skel/.bashrc; then
- chmod 0755 $INSTALL_ROOT/etc/skel/.bashrc
+if install_config_file "${SCRIPT_DIRECTORY}/skel/bashrc" \
+ "${INSTALL_ROOT}/etc/skel/.bashrc"; then
+ chmod 0755 "${INSTALL_ROOT}/etc/skel/.bashrc"
fi &&
-if install_config_file $SCRIPT_DIRECTORY/skel/bash_logout \
- $INSTALL_ROOT/etc/skel/.bash_logout; then
- chmod 0755 $INSTALL_ROOT/etc/skel/.bash_logout
+if install_config_file "${SCRIPT_DIRECTORY}/skel/bash_logout" \
+ "${INSTALL_ROOT}/etc/skel/.bash_logout"; then
+ chmod 0755 "${INSTALL_ROOT}/etc/skel/.bash_logout"
fi
#
[[SM-Commit] ] GIT changes to master grimoire by Pavel Vinogradov (4974342efe5b77271814d233a5f6462a6b122b87),
Pavel Vinogradov, 09/29/2024