diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2014-09-08 13:12:11 +0200 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2014-09-12 22:27:01 +0200 |
commit | 895ea9ff8be3fffcb38b37a18662c58a928ddbb3 (patch) | |
tree | b43046cf46a70a10d8dfc484119b391844b29fbe /find-requires.in | |
parent | aa832f67a55e851fbd7de69ffda44b7d82cd8bf8 (diff) | |
download | rpm-setup-895ea9ff8be3fffcb38b37a18662c58a928ddbb3.tar rpm-setup-895ea9ff8be3fffcb38b37a18662c58a928ddbb3.tar.gz rpm-setup-895ea9ff8be3fffcb38b37a18662c58a928ddbb3.tar.bz2 rpm-setup-895ea9ff8be3fffcb38b37a18662c58a928ddbb3.tar.xz rpm-setup-895ea9ff8be3fffcb38b37a18662c58a928ddbb3.zip |
convert PHP deps to internal generator
Diffstat (limited to 'find-requires.in')
-rwxr-xr-x | find-requires.in | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/find-requires.in b/find-requires.in index e15d5a6..c56c2e1 100755 --- a/find-requires.in +++ b/find-requires.in @@ -39,7 +39,6 @@ fi # filelist=`sed "s/[]['\"*?{}]/\\\\\&/g"` -phplist=`echo "$filelist" | grep -v /usr/doc | grep -v /usr/share/doc | egrep "\.php$"` rubygemlist=`echo "$filelist"| egrep "\.gemspec$"` @@ -63,12 +62,6 @@ fi echo $filelist | tr '[:blank:]' \\n | /usr/lib/rpm/rpmdeps --requires # -# --- Php modules. -[ -x @RPMVENDORDIR@/php.req -a -n "$phplist" ] && \ - echo $phplist | tr '[:blank:]' \\n | @RPMVENDORDIR@/php.req | sort -u \ - && test ${PIPESTATUS[2]} -ne 0 && echo 'error: @RPMVENDORDIR@/php.req failed' >&2 && exit 1 - -# # --- typelib() gobject-introspection bindings [ -x @RPMVENDORDIR@/gi-find-deps.sh ] && echo "$filelist" | tr '[:blank:]' \\n | @RPMVENDORDIR@/gi-find-deps.sh -R | sort -u \ |