mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-05 22:43:24 +00:00
8 lines
157 B
Bash
8 lines
157 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
cd `dirname $0`
|
||
|
cd ../..
|
||
|
PREFIX=`pwd`
|
||
|
QTSS_PROXY=${PREFIX}/sbin/QuickTimeStreamingServer
|
||
|
[ -x ${QTSS_PROXY} ] && ${QTSS_PROXY} && echo -n ' qtss'
|