Commit daeb82e3 authored by Mario Trangoni's avatar Mario Trangoni

shellcheck: Fix SC2162 issue

See, find . -name "*.sh" | xargs shellcheck -i SC2162 [...] For more information: https://www.shellcheck.net/wiki/SC2162 -- read without -r will mangle backs... Signed-off-by: 's avatarMario Trangoni <mjtrangoni@gmail.com>
parent 5b628e2d
......@@ -24,7 +24,7 @@ SYMBOLS_FILE="doc/libNX_X11/symbols/libNX_X11::symbols.txt"
DOC_FILE="doc/libNX_X11/symbols/libNX_X11::symbol-usage_internally.txt"
echo "Scanning for libNX_X11 symbols: in libNX_X11 internally: $DOC_FILE"
cd nx-X11/lib/X11/
cat "../../../$SYMBOLS_FILE" | grep -v -E "^#" | while read symbol; do
cat "../../../$SYMBOLS_FILE" | grep -v -E "^#" | while read -r symbol; do
echo
echo "#### $symbol ####"
......@@ -36,7 +36,7 @@ cd - 1>/dev/null
DOC_FILE="doc/libNX_X11/symbols/libNX_X11::symbol-usage_nxagent.txt"
echo "Scanning for libNX_X11 symbols: in hw/nxagent: $DOC_FILE"
cd nx-X11/programs/Xserver/hw/nxagent/
cat "../../../../../$SYMBOLS_FILE" | grep -v -E "^#" | while read symbol; do
cat "../../../../../$SYMBOLS_FILE" | grep -v -E "^#" | while read -r symbol; do
echo
echo "#### $symbol ####"
......@@ -48,7 +48,7 @@ cd - 1>/dev/null
DOC_FILE="doc/libNX_X11/symbols/libNX_X11::symbol-usage_nxcompext.txt"
echo "Scanning for libNX_X11 symbols: in hw/nxagent/compext: $DOC_FILE"
cd nx-X11/programs/Xserver/hw/nxagent/compext/
cat "../../../../../../$SYMBOLS_FILE" | grep -v -E "^#" | while read symbol; do
cat "../../../../../../$SYMBOLS_FILE" | grep -v -E "^#" | while read -r symbol; do
echo
echo "#### $symbol ####"
......@@ -65,7 +65,7 @@ SYMBOLS_FILE="doc/nxcompext/symbols/nxcompext::symbols.txt"
DOC_FILE="doc/nxcompext/symbols/nxcompext::symbol-usage_internally.txt"
echo "Scanning for nxcompext symbols: in hw/nxagent/compext internally: $DOC_FILE"
cd nx-X11/programs/Xserver/hw/nxagent/compext/
cat "../../../../../../$SYMBOLS_FILE" | grep -v -E "^#" | while read symbol; do
cat "../../../../../../$SYMBOLS_FILE" | grep -v -E "^#" | while read -r symbol; do
echo
echo "#### $symbol ####"
......@@ -77,7 +77,7 @@ cd - 1>/dev/null
DOC_FILE="doc/nxcompext/symbols/nxcompext::symbol-usage_nxagent.txt"
echo "Scanning for nxcompext symbols: in hw/nxagent: $DOC_FILE"
cd nx-X11/programs/Xserver/hw/nxagent/
cat ../../../../../$SYMBOLS_FILE | grep -v -E "^#" | while read symbol; do
cat ../../../../../$SYMBOLS_FILE | grep -v -E "^#" | while read -r symbol; do
echo
echo "#### $symbol ####"
......
......@@ -81,7 +81,7 @@ cd "${TEMP_DIR}/${PROJECT}-${RELEASE}/"
# Replace symlinks by copies of the linked target files
# Note: We don't have symlinked directories!!!
find . -type "l" | while read link; do
find . -type "l" | while read -r link; do
TARGET="$(readlink "${link}")"
pushd "$(dirname "${link}")" >/dev/null
if [ -f "${TARGET}" ]; then
......@@ -156,12 +156,12 @@ if [ "x$MODE" = "xfull" ]; then
rm -f "nx-X11/extras/Mesa/src/mesa/main/"*.py
rm -f "nx-X11/extras/Mesa/src/mesa/main/"{mesa.def,Imakefile,vsnprintf.c}
find nx-X11/extras/Mesa/ -name Makefile | while read file; do rm "$file"; done
find nx-X11/extras/Mesa/ -name Makefile.* | while read file; do rm "$file"; done
find nx-X11/extras/Mesa/ -name descrip.mms | while read file; do rm "$file"; done
find nx-X11/extras/Mesa/ -name Makefile | while read -r file; do rm "$file"; done
find nx-X11/extras/Mesa/ -name Makefile.* | while read -r file; do rm "$file"; done
find nx-X11/extras/Mesa/ -name descrip.mms | while read -r file; do rm "$file"; done
# this is for 3.5.0.x only...
cat "debian/patches/series" | sort | grep -v '^#' | egrep "([0-9]+(_|-).*\.(full|full\+lite)\.patch)" | while read file
cat "debian/patches/series" | sort | grep -v '^#' | egrep "([0-9]+(_|-).*\.(full|full\+lite)\.patch)" | while read -r file
do
cp -v "debian/patches/$file" "doc/applied-patches/"
echo "${file##*/}" >> "doc/applied-patches/series"
......@@ -198,7 +198,7 @@ else
mv LICENSE.nxcomp LICENSE
# this is for 3.5.0.x only...
cat "debian/patches/series" | sort | grep -v '^#' | egrep "([0-9]+(_|-).*\.full\+lite\.patch)" | while read file
cat "debian/patches/series" | sort | grep -v '^#' | egrep "([0-9]+(_|-).*\.full\+lite\.patch)" | while read -r file
do
cp -v "debian/patches/$file" "doc/applied-patches/"
echo "${file##*/}" >> "doc/applied-patches/series"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment