mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 09:36:41 -04:00
11 lines
343 B
Bash
11 lines
343 B
Bash
#!/bin/sh
|
|
|
|
PREFIX="%%PREFIX%%/bin"
|
|
PROGRAM="${0}"
|
|
|
|
# Prevent loading the Qt 5 flavor of the mlt7 plugins if installed.
|
|
# Shotcut will crash without this environment variable set because
|
|
# mlt7 defaults to loading the Qt 5 flavor of the plugins.
|
|
|
|
export MLT_REPOSITORY_DENY="libmltqt:libmltglaxnimate"
|
|
exec ${PREFIX}/${PROGRAM##*/}-real "${@}"
|