diff --git a/lang/python/python/files/python-package-install.sh b/lang/python/python/files/python-package-install.sh index a08f8b415..022cf8a35 100644 --- a/lang/python/python/files/python-package-install.sh +++ b/lang/python/python/files/python-package-install.sh @@ -45,6 +45,9 @@ process_filespec "$src_dir" "$dst_dir" "$filespec" || { exit 1 } +# delete egg-info directories +find "$dst_dir" -name "*.egg-info" | xargs rm -rf + if [ "$mode" == "sources" ] ; then # Copy only python source files find $dst_dir -not -name "*\.py" | xargs rm -f diff --git a/lang/python/python3/files/python3-package-install.sh b/lang/python/python3/files/python3-package-install.sh index cc1005189..ae5e17280 100644 --- a/lang/python/python3/files/python3-package-install.sh +++ b/lang/python/python3/files/python3-package-install.sh @@ -45,6 +45,9 @@ process_filespec "$src_dir" "$dst_dir" "$filespec" || { exit 1 } +# delete egg-info directories +find "$dst_dir" -name "*.egg-info" | xargs rm -rf + if [ "$mode" == "sources" ] ; then # Copy only python source files find $dst_dir -not -name "*\.py" | xargs rm -f