fix install directory handling for git and builds

The install directly should basically behave like the "build" directory.
Since it's tracked by git, containing a gitignore file, we shouldn't
have it in the toplevel gitignore (just like the build directory).

But then, the toplevel Makefile's real.clean target removes the install
directory. This is changed so that only it's content is being removed.
This commit is contained in:
Martin Kepplinger 2018-11-21 14:24:54 +01:00 committed by Trammell hudson
parent d8a3be47af
commit 371b65ff58
Failed to extract signature
2 changed files with 1 additions and 2 deletions

1
.gitignore vendored
View File

@ -15,7 +15,6 @@ config/*.old
*.log
*~
crossgcc
install
clean
*.map
*.sec

View File

@ -545,7 +545,7 @@ real.clean:
rm -rf "build/$$dir"; \
fi; \
done
rm -rf ./install
cd install && rm -rf -- *
else