We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 6e83630 commit 0a93674Copy full SHA for 0a93674
scripts/sipify_all.sh
@@ -47,11 +47,12 @@ for module in "${modules[@]}"; do
47
else
48
path=$(${GP}sed -r 's@/[^/]+$@@' <<< $sipfile)
49
mkdir -p python/$path
50
- ./scripts/sipify.pl $header > python/$sipfile.in
+ ./scripts/sipify.pl $header > python/$sipfile.in &
51
fi
52
count=$((count+1))
53
done < <( ${GP}sed -n -r "s/^%Include (.*\.sip)/${module}\/\1/p" python/${module}/${module}_auto.sip )
54
done
55
+wait # wait for sipify processes to finish
56
57
echo " => $count files sipified! 🍺"
58
0 commit comments