]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix some mistaken shell delinting
authorPaul Eggert <eggert@cs.ucla.edu>
Fri, 1 Jan 2021 09:12:04 +0000 (01:12 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Fri, 1 Jan 2021 09:12:04 +0000 (01:12 -0800)
* admin/merge-gnulib, admin/update-copyright, make-dist:
Revert recent mistaken changes that were put in merely to
pacify a shellcheck linter.

admin/merge-gnulib
admin/update-copyright
make-dist

index ed701ce133952e146056623886c99ad2fdb0f7e6..880dc5eef5334935fdfb85ace19f6379f92f6053 100755 (executable)
@@ -105,8 +105,8 @@ for module in $AVOIDED_MODULES; do
   avoided_flags="$avoided_flags --avoid=$module"
 done
 
-"$gnulib_srcdir"/gnulib-tool --dir="$src" "$GNULIB_TOOL_FLAGS" \
-        "$avoided_flags" "$GNULIB_MODULES" &&
+"$gnulib_srcdir"/gnulib-tool --dir="$src" $GNULIB_TOOL_FLAGS \
+       $avoided_flags $GNULIB_MODULES &&
 rm -- "$src"lib/gl_openssl.h "$src"m4/fcntl-o.m4 \
       "$src"m4/gl-openssl.m4 \
       "$src"m4/gnulib-cache.m4 "$src"m4/gnulib-tool.m4 \
index f392b09c10b6887a03a207deb021bc6a36468cde..a70d7a3ff93b533893e71c1ace5944682de95884 100755 (executable)
@@ -53,7 +53,7 @@ repo_files=$(git ls-files) &&
 # . They are GMP files, maintained by the GMP project, with their own dates.
 # . Their format cannot withstand changing the contents of copyright strings.
 
-updatable_files=$(find "$repo_files" \
+updatable_files=$(find $repo_files \
   ! -name COPYING \
   ! -name doclicense.texi \
   ! -name gpl.texi \
@@ -74,4 +74,4 @@ updatable_files=$(find "$repo_files" \
   ! -name 'mini-gmp.[ch]' \
   -print) &&
 
-build-aux/update-copyright "$updatable_files"
+build-aux/update-copyright $updatable_files
index cdbc8e9684431d9944d063029dccbc0cbeeadff3..89aa411ba942e7cc141d7b98cdcc2db204111013 100755 (executable)
--- a/make-dist
+++ b/make-dist
@@ -407,7 +407,7 @@ if ( [ $update = yes ] || [ ! -f $manifest ] ) && [ -r .git ]; then
   else
     git ls-files | grep -v '^test' >$manifest
   fi || exit
-  printf '%s\n' "$possibly_non_vc_files" "$info_files" >>$manifest || exit
+  printf '%s\n' $possibly_non_vc_files $info_files >>$manifest || exit
   sort -u -o $manifest $manifest || exit
 fi
 
@@ -460,7 +460,7 @@ MANIFEST_subdir_sed='
   s,^,'$tempdir'/,
 '
 tempsubdirs=$(sed "$MANIFEST_subdir_sed" $manifest | sort -u)
-$mkdir_verbose -p "$tempsubdirs" || exit
+$mkdir_verbose -p $tempsubdirs || exit
 
 echo "Making links to files"
 while read file; do
@@ -508,13 +508,13 @@ if [ "${make_tar}" = yes ]; then
 
   (cd $tempparent &&
    case $default_gzip in
-     cat) tar "$taropt" -cf - $emacsname;;
-     *) if tar "$taropt" -cf /dev/null --use-compress-program="$default_gzip" \
+     cat) tar $taropt -cf - $emacsname;;
+     *) if tar $taropt -cf /dev/null --use-compress-program="$default_gzip" \
               $emacsname/src/lisp.h > /dev/null 2>&1
        then
-          tar "$taropt" -cf - --use-compress-program="$default_gzip" $emacsname
+         tar $taropt -cf - --use-compress-program="$default_gzip" $emacsname
        else
-          tar "$taropt" -cf $emacsname.tar $emacsname &&
+         tar $taropt -cf $emacsname.tar $emacsname &&
          $default_gzip <$emacsname.tar
         fi;;
    esac