diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-07-29 01:00:21 (GMT) |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-07-29 01:00:21 (GMT) |
commit | c22eca7a0df869f1aa654394a2edf161bfd8a588 (patch) | |
tree | a8a6358603170a0280642d1c7cdde1f8ffb2a29f /README | |
parent | 69b3a6223153974215187b5443b38bbd622d1640 (diff) | |
download | patchelf-c22eca7a0df869f1aa654394a2edf161bfd8a588.zip patchelf-c22eca7a0df869f1aa654394a2edf161bfd8a588.tar.gz patchelf-c22eca7a0df869f1aa654394a2edf161bfd8a588.tar.bz2 |
Style
Diffstat (limited to 'README')
-rw-r--r-- | README | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -27,13 +27,16 @@ libraries. In particular, it can do the following: This option can be given multiple times. * Add a declared dependency on a dynamic library (DT_NEEDED): + $ patchelf --add-needed libfoo.so.1 my-program - + This option can be give multiple times. -* Replace a declared dependency on a dynamic library with another one (DT_NEEDED): +* Replace a declared dependency on a dynamic library with another one + (DT_NEEDED): + $ patchelf --replace-needed liboriginal.so.1 libreplacement.so.1 my-program - + This option can be give multiple times. |