+2006-07-05 Paul Varner <fuzzyray@gentoo.org>
+ * revdep-rebuild: Add --no-path option to revdep-rebuild for bug
+ #137313
+
2006-06-25 Marius Mauch <genone@gentoo.org>
* glsa-check: update cve code for bug 128115
echo " --library NAME Emerge existing packages that use the library with NAME"
echo " --library=NAME NAME can be a full path to the library or a basic"
echo " regular expression (man grep)"
+ echo " -np, --no-path Do not include searched directories in LD_LIBRARY_PATH"
echo " -nc, --no-color Turn off colored output"
echo " -i, --ignore Ignore temporary files from previous runs"
echo " -q, --quiet Be less verbose (also passed to emerge command)"
SEARCH_BROKEN=true
EXTRA_VERBOSE=false
KEEP_TEMP=false
+FULL_PATH=true
EMERGE_OPTIONS=""
PRELIMINARY_CALLED_OPTIONS=""
NOCOLOR=true
shift
;;
+ -np | --no-path )
+ FULL_PATH=false
+ shift
+ ;;
-i | --ignore )
rm -f ${LIST}*
shift
(
echo /lib* /usr/lib* | sed 's/ /:/g'
sed '/^#/d;s/#.*$//' </etc/ld.so.conf
- sed 's:/[^/]*$::' <$LIST.1_files | sort -ru
+ if $FULL_PATH ; then
+ sed 's:/[^/]*$::' <$LIST.1_files | sort -ru
+ fi
) | tr '\n' : | tr -d '\r' | sed 's/:$//' >$LIST.2_ldpath
echo -e " done.\n ($LIST.2_ldpath)"
fi
.B \-\-library=NAME
emerge packages that use the named library. Name can be a full path to a library or basic regular expression. (See man grep for the definition of basic regular expressions)
.TP
+.B \-np | \-\-no\-path
+Do not include searched directories in LD_LIBRARY_PATH. \fBNote:\fR Using this option will cause revdep-rebuild to report some false positives.
+.TP
.B \-nc | \-\-no\-color
turn off colored output (This option is also passed to the emerge command)
.TP