Skip to content

Buildinfo files removed while processing Makefile

Created by: balcirakpeter

  • Problem: While making package, makefile was not removing buildinfo files so they remained in the directory. These files are useless for us.
  • Change: Removing buildinfo files was added to process and clean functions in Makefile. Reason to add it also to clean is that if make package fails, buildinfo could remained in the directory. So after calling clean, we are sure buildinfo files are removed.
  • Result: There are no neccessary files left after process or clean.

Merge request reports