Skip to content
GitLab
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • T ThirdParty-common
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 13
    • Issues 13
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 0
    • Merge requests 0
  • Deployments
    • Deployments
    • Releases
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • Repository
  • Wiki
    • Wiki
  • Activity
  • Graph
  • Create a new issue
  • Commits
  • Issue Boards
Collapse sidebar
  • Development
  • ThirdParty-common
  • Issues
  • #7
Closed
Open
Issue created Oct 13, 2016 by Philippose Rajan@philippose

Allclean script in ThirdParty (v1606+) wrongly deletes all installed ThirdParty packages instead of the out-of-source temporary build files

Hello,

The following part of the Allclean script in the ThirdParty folder of v1606+ wrongly deletes all the installed ThirdParty packages instead of deleting only the out-of-source build files:

 # clean out-of-source build directories
[ -d platforms ] && ( set -x; rm -rf platforms/* )

Solution:

Change to:

 # clean out-of-source build directories
[ -d build ] && ( set -x; rm -rf build/* )

in order to clean only the out-of -source build files, but leave the installed packages intact.

Thank you.

Philippose Rajan

Assignee
Assign to
Time tracking