carla: fix --app-name for compatibility with NSM
This commit is contained in:
parent
8d30ac220a
commit
a89400db62
@ -44,6 +44,14 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
installFlags = [ "PREFIX=$(out)" ];
|
installFlags = [ "PREFIX=$(out)" ];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
# --with-appname="$0" is evaluated with $0=.carla-wrapped instead of carla. Fix that.
|
||||||
|
for file in $(grep -rl -- '--with-appname="$0"'); do
|
||||||
|
filename="$(basename -- "$file")"
|
||||||
|
substituteInPlace "$file" --replace '--with-appname="$0"' "--with-appname=\"$filename\""
|
||||||
|
done
|
||||||
|
'';
|
||||||
|
|
||||||
dontWrapQtApps = true;
|
dontWrapQtApps = true;
|
||||||
postFixup = ''
|
postFixup = ''
|
||||||
# Also sets program_PYTHONPATH and program_PATH variables
|
# Also sets program_PYTHONPATH and program_PATH variables
|
||||||
|
Loading…
Reference in New Issue
Block a user