diff options
author | Joakim Plate <elupus@ecce.se> | 2011-10-15 14:42:45 +0200 |
---|---|---|
committer | Joakim Plate <elupus@ecce.se> | 2011-10-15 14:48:48 +0200 |
commit | e03c06a4e78f53bc1d0d228ef1146e216151581a (patch) | |
tree | 78c1eb31f25ba0f17a1afda4b94d6bf269f6b983 /Makefile.in | |
parent | 3f3d2284e11c88f019897c5457cb6fdd901729ed (diff) |
removed: reallyclean target that was svn based
Use git clean instead
Diffstat (limited to 'Makefile.in')
-rwxr-xr-x | Makefile.in | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/Makefile.in b/Makefile.in index f7a0505fc8..e89ccebcf2 100755 --- a/Makefile.in +++ b/Makefile.in @@ -585,33 +585,6 @@ uninstall: @rm -rf $(DESTDIR)$(datarootdir)/xsessions/XBMC.desktop @echo "Done!" -reallyclean: - @echo " This will delete ALL unversioned files in"; \ - echo " your XBMC source tree. If you aren't sure"; \ - echo " you want to do this, answer anything but"; \ - echo " 'Y' (case sensitive) to the following."; \ - echo " DISCLAIMER: Team XBMC is NOT responsible"; \ - echo " for ANYTHING lost if you execute this command!"; \ - echo -n " Damnserious? (Y/*) "; \ - read -n1 PROMPT; \ - if [[ "$$PROMPT" = "Y" ]]; then \ - SVNV=$$(svnversion -n | cut -d':' -f1); _IFS=$$IFS; IFS=$$'\t\n'; \ - for i in `svn st --no-ignore | grep ^[I\?] | cut -d' ' -f7-`; do \ - if [[ $${i:(-4)} != "diff" && $${i:(-5)} != "patch" ]]; then \ - echo " Deleting $$i"; \ - rm -rf "$$i"; \ - fi; \ - done; \ - IFS=$$_IFS; \ - echo " Recovering any missing files."; \ - svn up -r $${SVNV/M/} | sed -e "s/.*'\(.*\)'/ \1/p" -e d; \ - echo " Done."; \ - echo " The following files may need reverted (svn revert <file>)"; \ - svn st | sed -e "s/^M */ /p" -e d; \ - else \ - echo; \ - fi - clean-xbmc.bin: rm -f xbmc.bin for d in $(BIN_DIRS); do if test -f $$d/Makefile; then $(MAKE) -C $$d clean; fi; done |