Lines Matching full:relative
4 Subject: [PATCH] Add option to make the rpath relative under a specified root
7 Running "patchelf" with the option "--make-rpath-relative ROOTDIR" will
13 The original build-system already took care of setting a relative
33 If the option "--relative-to-file" is given, the rpath will start
34 with "$ORIGIN" making it relative to the ELF file, otherwise an
35 absolute path relative to ROOTDIR will be used.
163 + debug("no RPATH to make relative\n");
195 + /* Make the the RPATH relative to the specified path */
211 + The original build-system already took care of setting a relative
253 + /* Finally make "canonicalPath" relative to "filedir" in "rootDir" */
258 + debug("keeping relative path of %s\n", canonicalPath.c_str());
300 + [--make-rpath-relative ROOTDIR]\n\
302 + [--relative-to-file]\n\
310 + else if (arg == "--make-rpath-relative") {
311 + if (++i == argc) error("missing argument to --make-rpath-relative");
318 + else if (arg == "--relative-to-file") {