Support --jobs as an alias to -j in find-debuginfo.sh (RhBug:1518120)

make supports both, and as %_smp_mflags gets passed to both make and
find-debuginfo.sh now we better accept the same options for as make.
This commit is contained in:
Mark Wielaard 2017-12-08 14:46:16 +02:00 committed by Panu Matilainen
parent 34c2ba3c6a
commit e5abfd8b57
1 changed files with 4 additions and 0 deletions

View File

@ -182,6 +182,10 @@ while [ $# -gt 0 ]; do
-j*)
n_jobs=${1#-j}
;;
--jobs)
n_jobs=$2
shift
;;
-S)
srcout=$2
shift