1 #!/bin/sh 2 3 set -e 4 5 # When you move, remove or rename generated fi 6 # .gitignore and cleaning rules in the Makefil 7 # to do. However, people usually do 'git pull' 8 # running 'make clean'. Then, the stale genera 9 # causing build issues. 10 # 11 # Also, 'git status' shows such stale build ar 12 # What is worse, some people send a wrong patc 13 # without checking the commit history. 14 # 15 # So, when you (re)move generated files, pleas 16 # the Makefile to this script. This is run bef 17 # anything, so people will not be annoyed by s 18 # 19 # This script is not intended to grow endlessl 20 # yard. Stale files stay in this file for a wh 21 # then will be really dead and removed from th 22 23 rm -f *.spec 24 25 rm -f lib/test_fortify.log
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.