diff options
author | jbeich <jbeich@FreeBSD.org> | 2017-09-21 05:10:00 +0800 |
---|---|---|
committer | jbeich <jbeich@FreeBSD.org> | 2017-09-21 05:10:00 +0800 |
commit | 3f1b85db92a8466b6042025bedafdd6f6e1955a3 (patch) | |
tree | 8806bd7fe8e406362782eba4a53b6fe399c0bf2b /emulators | |
parent | 39b46823e906d657ffc09f2dea8a1102691a62bd (diff) | |
download | freebsd-ports-gnome-3f1b85db92a8466b6042025bedafdd6f6e1955a3.tar.gz freebsd-ports-gnome-3f1b85db92a8466b6042025bedafdd6f6e1955a3.tar.zst freebsd-ports-gnome-3f1b85db92a8466b6042025bedafdd6f6e1955a3.zip |
emulators/rpcs3: don't embed default RPATH
$ readelf -d $(which rpcs3) | fgrep PATH
0x000000000000000f (RPATH) Library rpath: [/usr/local/lib:/usr/local/lib/qt5]
0x000000000000001d (RUNPATH) Library runpath: [/usr/local/lib:/usr/local/lib/qt5]
Obtained from: AUR
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/rpcs3/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emulators/rpcs3/Makefile b/emulators/rpcs3/Makefile index 7c19e3211afa..1bb9b880ab9a 100644 --- a/emulators/rpcs3/Makefile +++ b/emulators/rpcs3/Makefile @@ -38,7 +38,7 @@ USE_QT5= qmake_build buildtools_build core dbus gui widgets USE_XORG= x11 EXTRA_PATCHES+= ${EXTRA_PATCHES_${OPSYS}_${OSREL}} EXTRA_PATCHES_FreeBSD_10.3= ${PATCHDIR}/extra-patch-no-thread_local -CMAKE_ARGS+= -DUSE_SYSTEM_LIBPNG=on -DUSE_SYSTEM_FFMPEG=on +CMAKE_ARGS+= -DCMAKE_SKIP_RPATH=on -DUSE_SYSTEM_LIBPNG=on -DUSE_SYSTEM_FFMPEG=on CXXFLAGS+= -D_GLIBCXX_USE_C99 # XXX ports/193528 CXXFLAGS+= -Wno-macro-redefined # __STDC_*_MACROS sys/cdefs.h vs. llvm-config LDFLAGS+= -Wl,--as-needed # GLU |