mirror of
https://git.freebsd.org/ports.git
synced 2025-04-29 18:16:48 -04:00
15 lines
328 B
Text
15 lines
328 B
Text
--- gui/gameconqueror.in.orig 2017-10-13 21:53:16 UTC
|
|
+++ gui/gameconqueror.in
|
|
@@ -1,10 +1,5 @@
|
|
-#!/bin/bash
|
|
+#!/bin/sh
|
|
|
|
DATADIR=@PKGDATADIR@
|
|
|
|
-PKEXEC=$(command -v "pkexec")
|
|
-if [ -n "$PKEXEC" ]; then
|
|
- $PKEXEC $DATADIR/GameConqueror.py "$@"
|
|
-else
|
|
- echo "install policykit!"
|
|
-fi
|
|
+exec "$DATADIR/GameConqueror.py" "$@"
|