- fix incorrect invocation of non-existing binary named "-find"

This bloated the target needlessly (and used to work before)
This commit is contained in:
Bernhard Reutner-Fischer 2007-08-21 10:56:38 +00:00
parent 7547c7ebae
commit f0ca4b8205

View File

@ -250,14 +250,14 @@ endif
$(PROJECT_BUILD_DIR)/.root: $(PROJECT_BUILD_DIR)/.root:
mkdir -p $(TARGET_DIR) mkdir -p $(TARGET_DIR)
if ! [ -d "$(TARGET_DIR)/bin" ] ; then \ if ! [ -d "$(TARGET_DIR)/bin" ]; then \
if [ -d "$(TARGET_SKELETON)" ] ; then \ if [ -d "$(TARGET_SKELETON)" ]; then \
cp -fa $(TARGET_SKELETON)/* $(TARGET_DIR)/; \ cp -fa $(TARGET_SKELETON)/* $(TARGET_DIR)/ ; \
fi; \ fi; \
touch $(STAGING_DIR)/.fakeroot.00000 ; \ touch $(STAGING_DIR)/.fakeroot.00000 ; \
-find $(TARGET_DIR) -type d -name CVS | xargs rm -rf ; \ fi
-find $(TARGET_DIR) -type d -name .svn | xargs rm -rf ; \ -find $(TARGET_DIR) -type d -name CVS | xargs rm -rf
fi; -find $(TARGET_DIR) -type d -name .svn | xargs rm -rf
touch $@ touch $@
$(TARGET_DIR): $(PROJECT_BUILD_DIR)/.root $(TARGET_DIR): $(PROJECT_BUILD_DIR)/.root