Difference between revisions of "Template:Flatpak Guile Error Demo"

From GnuCash
Jump to: navigation, search
(Flatpak_Guile_Error_Demo - add dir for --user install)
m (Flatpak Guile Error Demo - Remove trailing slash on cd directory)
Line 8: Line 8:
 
:[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">
 
# --system install
 
# --system install
cd /var/lib/flatpak/app/org.gnucash.GnuCash/
+
cd /var/lib/flatpak/app/org.gnucash.GnuCash
 
# OR --user install
 
# OR --user install
cd $HOME/.local/share/flatpak/app/org.gnucash.GnuCash/
+
cd $HOME/.local/share/flatpak/app/org.gnucash.GnuCash
  
 
sudo find . -name '*.go' -exec touch '{}' ';'
 
sudo find . -name '*.go' -exec touch '{}' ';'
 
</syntaxhighlight>
 
</syntaxhighlight>

Revision as of 00:37, 1 June 2021

ldconfig: /app/lib/libguile-2.2.so.1.3.0-gdb.scm is not an ELF file - it has the wrong magic bytes at the start.

;;; 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 '{}' ';'