add -not -name '.svn' in drivers/Makefile

git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@1443 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 5b292438eaea694b510a46480bd14279a8b2e132
Former-commit-id: e7a46635c8be22a4b4a63039a91937aa670f71aa
This commit is contained in:
torcs-ng 2009-09-21 15:29:40 +00:00
parent 4fa55fa307
commit a108f02586

View file

@ -19,7 +19,7 @@
#SUBDIRS = $(shell find * -maxdepth 0 -type d -print) #SUBDIRS = $(shell find * -maxdepth 0 -type d -print)
# Build just every present robot but educational "bt" and "K1999" # Build just every present robot but educational "bt" and "K1999"
SUBDIRS = $(shell find * -maxdepth 0 -type d -not -name 'bt' -not -name 'K1999' -print) SUBDIRS = $(shell find * -maxdepth 0 -type d -not -name 'bt' -not -name 'K1999' -not -name '.svn' -print)
SHIPSUBDIRS = $(SUBDIRS) SHIPSUBDIRS = $(SUBDIRS)