From 34057730a55efe31431070c529031ee5a6f7f47b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Tue, 4 Aug 2015 17:17:11 +0300 Subject: [PATCH] Fixed #25222 -- Avoided installing django_bash_completion for python*-config. --- extras/django_bash_completion | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extras/django_bash_completion b/extras/django_bash_completion index 1fac9ea2aa..06a2321ff3 100755 --- a/extras/django_bash_completion +++ b/extras/django_bash_completion @@ -61,7 +61,7 @@ unset pythons if command -v whereis &>/dev/null; then python_interpreters=$(whereis python | cut -d " " -f 2-) for python in $python_interpreters; do - pythons="${pythons} ${python##*/}" + [[ $python != *-config ]] && pythons="${pythons} ${python##*/}" done unset python_interpreters pythons=$(echo $pythons | tr " " "\n" | sort -u | tr "\n" " ")