summaryrefslogtreecommitdiff
path: root/irfanview/irfanview64
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2019-06-16 19:08:29 -0400
committerB Stack <bgstack15@gmail.com>2019-06-16 19:08:29 -0400
commitb7690d916e5f6c39db4aa1d57f712f9df11112a4 (patch)
treecd5d27a900f0d3399745c246668a7092eae8deab /irfanview/irfanview64
parentirfanview 4.53-2: fix #7 invocation problem for rpm (diff)
downloadstackrpms-b7690d916e5f6c39db4aa1d57f712f9df11112a4.tar.gz
stackrpms-b7690d916e5f6c39db4aa1d57f712f9df11112a4.tar.bz2
stackrpms-b7690d916e5f6c39db4aa1d57f712f9df11112a4.zip
irfanview 4.53-2 dpkg rc1
Split the calling script like the rpm. Still need to fix the icon png generation. I suspect the svg just needs to be rebuilt.
Diffstat (limited to 'irfanview/irfanview64')
-rwxr-xr-xirfanview/irfanview643
1 files changed, 1 insertions, 2 deletions
diff --git a/irfanview/irfanview64 b/irfanview/irfanview64
index d3c16e5..51a2e95 100755
--- a/irfanview/irfanview64
+++ b/irfanview/irfanview64
@@ -9,7 +9,7 @@
# 2019-02-26 remove /etc/default/irfanview file
# 2019-06-01 fix invocation for single item with space in name. Cannot call multiple objcts with spaces in filename.
# 2019-06-16 remove DEVTTY in favor of just showing on current tty
-# 2019-06-16 replace winepath call with wine $WINEPATH_BIN
+# 2019-06-16 replace winepath call with wine winepath.exe
# 2019-06-16 split into package-arch-specific and common scripts
# Usage: irfanview /path/to/image /another/image/file
# Reference:
@@ -21,7 +21,6 @@ test -z "${IV_WINEPREFIX}" && export IV_WINEPREFIX="$HOME/.wine64"
test -n "${IV_WINEPREFIX}" && export WINEPREFIX="${IV_WINEPREFIX}" || export WINEPREFIX=$HOME/.wine64
test -z "${IV_EXEC_NAME}" && export IV_EXEC_NAME="i_view64.exe"
test -z "${IV_EXEC_PATH}" && export IV_EXEC_PATH="/usr/share/irfanview64/i_view64.exe"
-test -z "${IV_WINEPATH_BIN}" && export IV_WINEPATH_BIN="/usr/lib64/wine/fakedlls/winepath.exe"
export IV_VALID_CALL=do_not_set_this_manually
. irfanview-common "$@"
bgstack15