From 74067d389c204cd40906980391680724380667c0 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Wed, 15 Feb 2017 18:55:25 -0500 Subject: Expect devtools files to already be patched. --- src/devtools/find-libdeps.patch | 47 ----------------------------------------- 1 file changed, 47 deletions(-) delete mode 100644 src/devtools/find-libdeps.patch (limited to 'src/devtools/find-libdeps.patch') diff --git a/src/devtools/find-libdeps.patch b/src/devtools/find-libdeps.patch deleted file mode 100644 index 1bcffc9..0000000 --- a/src/devtools/find-libdeps.patch +++ /dev/null @@ -1,47 +0,0 @@ ---- find-libdeps.in 2014-03-21 13:59:32.059649315 -0400 -+++ find-libdeps.ugly 2014-03-21 14:21:18.955744982 -0400 -@@ -1,6 +1,7 @@ - #!/bin/bash -+# License: Unspecified - --m4_include(lib/common.sh) -+. "$(librelib messages)" - - set -e - shopt -s extglob -@@ -19,12 +20,32 @@ - *) die "Unknown mode %s" "$script_mode" ;; - esac - -+usage() { -+ print "Usage: find-lib(deps|provides) [options] " -+ print "Find library dependencies or provides of a package." -+ echo -+ prose 'Prints a list of library dependencies in the format:' -+ echo -+ print ' =-' -+ echo -+ prose 'Where is the shared library version, or -+ repeated if there is no version attached; and -+ is the architecture of the library (either `32` -+ or `64`, based on the ELF Class).' -+ echo -+ print "Options:" -+ flag "--ignore-internal" "Ignore internal libraries; libraries -+ without a version attached" -+ flag "-h" "Show this message" -+} - if [[ -z $1 ]]; then -- echo "${0##*/} [options] " -- echo "Options:" -- echo " --ignore-internal ignore internal libraries" -+ usage >&2 - exit 1 - fi -+if [[ $1 = '-h' ]]; then -+ usage -+ exit 0 -+fi - - if [[ -d $1 ]]; then - pushd $1 >/dev/null -- cgit v1.2.3-54-g00ecf