Merge pull request #4684 from commodo/python-fix-opkg-collisions
python,python3: fix opkg collisions with -src packages
This commit is contained in:
commit
e4c4c724fd
2 changed files with 2 additions and 2 deletions
|
@ -51,7 +51,7 @@ find "$dst_dir" -name "*.egg-info" | xargs rm -rf
|
||||||
|
|
||||||
if [ "$mode" == "sources" ] ; then
|
if [ "$mode" == "sources" ] ; then
|
||||||
# Copy only python source files
|
# Copy only python source files
|
||||||
find $dst_dir -type f -not -name "*\.py" | xargs rm -f
|
find $dst_dir -not -type d -not -name "*\.py" | xargs rm -f
|
||||||
|
|
||||||
# Delete empty folders (if the case)
|
# Delete empty folders (if the case)
|
||||||
if [ -d "$dst_dir/usr" ] ; then
|
if [ -d "$dst_dir/usr" ] ; then
|
||||||
|
|
|
@ -51,7 +51,7 @@ find "$dst_dir" -name "*.egg-info" | xargs rm -rf
|
||||||
|
|
||||||
if [ "$mode" == "sources" ] ; then
|
if [ "$mode" == "sources" ] ; then
|
||||||
# Copy only python source files
|
# Copy only python source files
|
||||||
find $dst_dir -type f -not -name "*\.py" | xargs rm -f
|
find $dst_dir -not -type d -not -name "*\.py" | xargs rm -f
|
||||||
|
|
||||||
# Delete empty folders (if the case)
|
# Delete empty folders (if the case)
|
||||||
if [ -d "$dst_dir/usr" ] ; then
|
if [ -d "$dst_dir/usr" ] ; then
|
||||||
|
|
Loading…
Reference in a new issue