diff options
author | Matthieu Patou <mat@matws.net> | 2010-12-15 11:33:02 +0300 |
---|---|---|
committer | Matthieu Patou <mat@matws.net> | 2010-12-15 12:07:32 +0300 |
commit | 05e0f75c741e9483ddb3fe16f3c77ff87185e4b3 (patch) | |
tree | 19baf6919c8f41c6dab30fefc8686f17cc67c50e /buildtools/wafsamba | |
parent | 12e49a748c26697fb6f697512babb949a6c2931f (diff) | |
download | samba-05e0f75c741e9483ddb3fe16f3c77ff87185e4b3.tar.gz samba-05e0f75c741e9483ddb3fe16f3c77ff87185e4b3.tar.xz samba-05e0f75c741e9483ddb3fe16f3c77ff87185e4b3.zip |
build: hpux didn't support -Bdynamic
Diffstat (limited to 'buildtools/wafsamba')
-rw-r--r-- | buildtools/wafsamba/hpuxcc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildtools/wafsamba/hpuxcc.py b/buildtools/wafsamba/hpuxcc.py index abdf2a807b0..c263556cd8f 100644 --- a/buildtools/wafsamba/hpuxcc.py +++ b/buildtools/wafsamba/hpuxcc.py @@ -26,7 +26,7 @@ def gcc_modifier_hpux(conf): v['RPATH_ST']='-Wl,-rpath,%s' v['CCDEFINES_ST']='-D%s' v['SONAME_ST']='-Wl,-h,%s' - v['SHLIB_MARKER']=['-Wl,-Bdynamic'] + v['SHLIB_MARKER']=[] # v['STATICLIB_MARKER']='-Wl,-Bstatic' v['FULLSTATIC_MARKER']='-static' v['program_PATTERN']='%s' |