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 b8616ec commit b7a4366Copy full SHA for b7a4366
scripts/sipify_all.sh
@@ -31,11 +31,11 @@ modules=(core gui analysis server)
31
for module in "${modules[@]}"; do
32
while read -r sipfile; do
33
echo "$sipfile"
34
- header=$(sed -E 's/(.*)\.sip/src\/\1.h/' <<< $sipfile)
+ header=$(${GP}sed -E 's/(.*)\.sip/src\/\1.h/' <<< $sipfile)
35
if [ ! -f $header ]; then
36
echo "*** Missing header: $header for sipfile $sipfile"
37
else
38
- path=$(sed -r 's@/[^/]+$@@' <<< $sipfile)
+ path=$(${GP}sed -r 's@/[^/]+$@@' <<< $sipfile)
39
mkdir -p python/$path
40
./scripts/sipify.pl $header > python/$sipfile
41
fi
0 commit comments