[Github-comments] [geany/geany] Windows cross, GTK3 and x86_64 build preparations (#2590)
Enrico Tröger
notifications at xxxxx
Sat Nov 7 14:42:44 UTC 2020
@eht16 commented on this pull request.
> fi
done
- rmdir mingw32
+ rmdir mingw64
+ fi
+}
+
+delayed_post_install() {
+ if [ "$run_pi" ]; then
+ echo "Execute delayed post install tasks"
+ # Commands have been collected manually from the various .INSTALL scripts
Yes, it is fragile. But no more than having them executed during package extraction:
```
Running post_install script for "glib2"
.INSTALL: line 3: pwd: -W: invalid option
pwd: usage: pwd [-LP]
/build
sed: can't read /bin/gdbus-codegen-script.py: No such file or directory
sed: can't read /bin/glib-genmarshal-script.py: No such file or directory
sed: can't read /bin/glib-mkenums-script.py: No such file or directory
sed: can't read /bin/gtester-report-script.py: No such file or directory
```
They use `pwd -W` which is a MSYS special option and exist in no other `pwd` implementation.
And it continues:
```
Running post_install script for "fontconfig"
Fontconfig configuration is done via /mingw64/etc/fonts/conf.avail and conf.d.
Read /mingw64/etc/fonts/conf.d/README for more information.
updating font cache... .INSTALL: line 13: mingw64/bin/fc-cache: No such file or directory
done.
Running post_install script for "gdk-pixbuf2"
.INSTALL: line 2: mingw64/bin/gdk-pixbuf-query-loaders: No such file or directory
Running post_install script for "hicolor-icon-theme"
.INSTALL: line 9: mingw64/bin/gdk-pixbuf-query-loaders.exe: cannot execute binary file: Exec format error
Running post_install script for "adwaita-icon-theme"
.INSTALL: line 9: mingw64/bin/gdk-pixbuf-query-loaders.exe: cannot execute binary file: Exec format error
```
Many of the scripts don't work properly and much of the stuff in there we don't need.
We could maybe patch the install scripts so that they work with `wine` and replace `pwd -W` but this feels even more fragile.
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/pull/2590#discussion_r519184156
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.geany.org/pipermail/github-comments/attachments/20201107/559112ae/attachment.htm>
More information about the Github-comments
mailing list