summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xfind-external-requires23
-rw-r--r--firefox.spec6
2 files changed, 0 insertions, 29 deletions
diff --git a/find-external-requires b/find-external-requires
deleted file mode 100755
index d79db1d..0000000
--- a/find-external-requires
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/sh
-
-# Finds requirements provided outside of the current file set
-
-filelist=`sed "s/[]['\"*?{}]/\\\\\&/g"`
-
-provides=`echo $filelist | /usr/lib/rpm/find-provides`
-
-{
-for f in $filelist ; do
- echo $f | /usr/lib/rpm/find-requires | while read req ; do
- found=0
- for p in $provides ; do
- if [ "$req" = "$p" ]; then
- found=1
- fi
- done
- if [ "$found" = "0" ]; then
- echo $req
- fi
- done
-done
-} | sort -u \ No newline at end of file
diff --git a/firefox.spec b/firefox.spec
index 66fe93e..dbb418a 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -39,9 +39,6 @@ Source13: firefox-mozconfig-debuginfo
Source20: firefox.desktop
Source21: firefox.sh.in
Source23: firefox.1
-# Not necessary
-# Source100: find-external-requires
-
#Build patches
Patch0: firefox-version.patch
@@ -75,9 +72,6 @@ Obsoletes: mozilla <= 37:1.7.13
Provides: webclient
-# %%define _use_internal_dependency_generator 0
-# %%define __find_requires %{SOURCE100}
-
%description
Mozilla Firefox is an open-source web browser, designed for standards
compliance, performance and portability.
bgstack15