summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2020-02-13 13:39:43 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2020-02-17 08:03:55 +0100
commitf1baeb0224096f8d3a5b3d675b76e91b4e538e81 (patch)
tree8a63b67213d7b05231dd1d0e9c09ca15348b97e6
parent2807d55666102610880c8e01e507b2fe9a994787 (diff)
bootstrap: Add special case for clean command
The testsuites/ada/sptests/sp19/Makefile was added to document how sptest.adb is generated. However, this Makefile is in the way of ./bootstrap -c. Add an exception.
-rwxr-xr-xbootstrap2
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstrap b/bootstrap
index 7ed592d435..b3da39383b 100755
--- a/bootstrap
+++ b/bootstrap
@@ -315,7 +315,7 @@ clean)
find . -name 'config.status' -print | xargs rm -f
find . -name 'config.log' -print | xargs rm -f
find . -name 'config.cache' -print | xargs rm -f
- find . -name 'Makefile' -print | xargs rm -f
+ find . -name 'Makefile' -and -not -path ./testsuites/ada/sptests/sp19/Makefile -print | xargs rm -f
find . -name '.deps' -print | xargs rm -rf
find . -name '.libs' -print | xargs rm -rf
find . -name 'stamp-h.in' | xargs rm -rf