mirror of
https://github.com/FWGS/xash3d-fwgs.git
synced 2026-08-05 03:24:56 +08:00
wscript: fix RPATH under OpenBSD
This commit is contained in:
4
wscript
4
wscript
@@ -357,6 +357,10 @@ def configure(conf):
|
||||
conf.env.DEFAULT_RPATH = '/usr/share/su.xash.Engine/lib'
|
||||
elif conf.env.DEST_OS == 'darwin':
|
||||
conf.env.DEFAULT_RPATH = '@loader_path'
|
||||
elif conf.env.DEST_OS == 'openbsd':
|
||||
# OpenBSD requires -z origin to enable $ORIGIN expansion in RPATH
|
||||
conf.env.RPATH_ST = '-Wl,-z,origin,-rpath,%s'
|
||||
conf.env.DEFAULT_RPATH = '$ORIGIN'
|
||||
else:
|
||||
conf.env.DEFAULT_RPATH = '$ORIGIN'
|
||||
|
||||
|
||||
Reference in New Issue
Block a user