mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
be74250a11
Original commit message from CVS: add libtool uninstalled lib paths - yuck
13 lines
212 B
Python
13 lines
212 B
Python
import sys
|
|
import os
|
|
|
|
"libtool lib location"
|
|
devloc = os.path.join(__path__[0],'.libs')
|
|
|
|
if os.path.exists(devloc):
|
|
sys.path.append(devloc)
|
|
|
|
sys.setdlopenflags(1)
|
|
del devloc, sys, os
|
|
|
|
from _gstreamer import *
|