Difference between revisions of "Template:Flatpak Guile Error Demo"
From GnuCash
(extract from https://github.com/flathub/org.gnucash.GnuCash/issues/24) |
(Remove unrelated warning) |
||
(2 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
<syntaxhighlight lang="console"> | <syntaxhighlight lang="console"> | ||
− | + | : | |
− | |||
;;; note: source file /app/share/guile//2.2/ice-9/eval.scm | ;;; note: source file /app/share/guile//2.2/ice-9/eval.scm | ||
;;; newer than compiled /app/lib/guile/2.2/ccache/ice-9/eval.go | ;;; newer than compiled /app/lib/guile/2.2/ccache/ice-9/eval.go | ||
Line 7: | Line 6: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
:[https://github.com/flathub/org.gnucash.GnuCash/issues/24#issuecomment-523048429 Workaround]: <syntaxhighlight lang="sh"> | :[https://github.com/flathub/org.gnucash.GnuCash/issues/24#issuecomment-523048429 Workaround]: <syntaxhighlight lang="sh"> | ||
− | cd /var/lib/flatpak/app/org.gnucash.GnuCash/ | + | # --system install |
+ | cd /var/lib/flatpak/app/org.gnucash.GnuCash | ||
+ | # OR --user install | ||
+ | cd $HOME/.local/share/flatpak/app/org.gnucash.GnuCash | ||
+ | |||
sudo find . -name '*.go' -exec touch '{}' ';' | sudo find . -name '*.go' -exec touch '{}' ';' | ||
</syntaxhighlight> | </syntaxhighlight> |
Latest revision as of 10:50, 5 April 2023
:
;;; note: source file /app/share/guile//2.2/ice-9/eval.scm
;;; newer than compiled /app/lib/guile/2.2/ccache/ice-9/eval.go
:
- Workaround:
# --system install cd /var/lib/flatpak/app/org.gnucash.GnuCash # OR --user install cd $HOME/.local/share/flatpak/app/org.gnucash.GnuCash sudo find . -name '*.go' -exec touch '{}' ';'