mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-14 21:56:41 +01:00
a67c9bc47a
Install path without /Tools/ is erroneous. Sorry Duncan! :( Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
8 lines
169 B
Bash
8 lines
169 B
Bash
#!/bin/sh
|
|
FDK_EXE="/opt/afdko/Tools/linux"
|
|
if [ ! "$PATH" = "" ]; then
|
|
echo :$PATH: | grep -q :$FDK_EXE: || PATH=$PATH:$FDK_EXE
|
|
else
|
|
PATH=$FDK_EXE
|
|
fi
|
|
export FDK_EXE
|