diff options
author | Justin M. Forbes <jforbes@fedoraproject.org> | 2020-12-14 09:02:23 -0600 |
---|---|---|
committer | Justin M. Forbes <jforbes@fedoraproject.org> | 2020-12-14 09:02:23 -0600 |
commit | 952ed53b8dc02307ae140982548522d049e0bca5 (patch) | |
tree | dce1f55251f5deb95f6f4a53be4d5e3f11c36a9a /parallel_xz.sh | |
parent | 39cafd66089878f3d0d997260f1d0b1ede356e0d (diff) | |
download | kernel-952ed53b8dc02307ae140982548522d049e0bca5.tar.gz kernel-952ed53b8dc02307ae140982548522d049e0bca5.tar.xz kernel-952ed53b8dc02307ae140982548522d049e0bca5.zip |
kernel-5.10.0-98
* Mon Dec 14 2020 Justin M. Forbes <jforbes@fedoraproject.org> [5.10.0-98]
- Add missing '$' sign to (GIT) in redhat/Makefile (Augusto Caringi)
Resolves: rhbz#
Signed-off-by: Justin M. Forbes <jforbes@fedoraproject.org>
Diffstat (limited to 'parallel_xz.sh')
-rwxr-xr-x | parallel_xz.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/parallel_xz.sh b/parallel_xz.sh index f1b6cdd15..bc08a548d 100755 --- a/parallel_xz.sh +++ b/parallel_xz.sh @@ -23,4 +23,4 @@ test "$procgroup" = 1 && exec xargs -r xz # xz has some startup cost. If files are really small, # this cost might be significant. To combat this, # process several files (in sequence) by each xz process via -n 16: -exec xargs -r -n 16 -P "$procgroup" xz +exec xargs -r -n 16 -P $procgroup xz |