summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/rpm/rpm/pythondeps.sh
diff options
context:
space:
mode:
authorAlexander Kanavin <alexander.kanavin@linux.intel.com>2016-12-30 18:38:51 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-03-13 09:43:21 +0000
commitd0365f35303db3595688a6e5290677e02a72c54e (patch)
tree41a7989277ed93b4d48c7d331de742fa177fcda9 /meta/recipes-devtools/rpm/rpm/pythondeps.sh
parent2358e786ec8d1199d90e181eb5d8d00816f669b4 (diff)
downloadopenembedded-core-d0365f35303db3595688a6e5290677e02a72c54e.tar.gz
rpm: remove 5.x recipe
Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
Diffstat (limited to 'meta/recipes-devtools/rpm/rpm/pythondeps.sh')
-rwxr-xr-xmeta/recipes-devtools/rpm/rpm/pythondeps.sh16
1 files changed, 0 insertions, 16 deletions
diff --git a/meta/recipes-devtools/rpm/rpm/pythondeps.sh b/meta/recipes-devtools/rpm/rpm/pythondeps.sh
deleted file mode 100755
index 083b174f17..0000000000
--- a/meta/recipes-devtools/rpm/rpm/pythondeps.sh
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/sh
-
-[ $# -ge 1 ] || {
- cat > /dev/null
- exit 0
-}
-
-case $1 in
--R|--requires)
- shift
- grep "/usr/\(lib[^/]*\|share\)/python[^/]*/" >/dev/null && echo "python"
- exit 0
- ;;
-esac
-
-exit 0