+2004-09-02 Helge Hess <helge.hess@opengroupware.org>
+
+ * wo*.make: when copying bundles to the install location, ensure that
+ .svn directories (Subversion tracking dirs) are excluded (v4.3.24)
+
2004-09-01 Helge Hess <helge.hess@skyrix.com>
* WOApplication.m: added a fix to find the appwrapper in flattened
# version file
-SUBMINOR_VERSION:=23
+SUBMINOR_VERSION:=24
# v4.2.413 requires libSaxObjC v4.2.33
# v4.2.341 requires libNGExtensions v4.2.77
internal-woapp-install_::
@($(MKINSTALLDIRS) $(GNUSTEP_WOAPPS); \
rm -rf $(GNUSTEP_WOAPPS)/$(WOAPP_DIR_NAME); \
- $(TAR) chf - --exclude=CVS --to-stdout $(WOAPP_DIR_NAME) | (cd $(GNUSTEP_WOAPPS); $(TAR) xf -))
+ $(TAR) chf - --exclude=CVS --exclude=.svn --to-stdout $(WOAPP_DIR_NAME) | (cd $(GNUSTEP_WOAPPS); $(TAR) xf -))
ifneq ($(CHOWN_TO),)
$(CHOWN) -R $(CHOWN_TO) $(GNUSTEP_WOAPPS)/$(WOAPP_DIR_NAME)
endif
internal-woapp-install::
@($(MKINSTALLDIRS) $(GNUSTEP_WOAPPS); \
rm -rf $(GNUSTEP_WOAPPS)/$(WOAPP_DIR_NAME); \
- $(TAR) ch --exclude=CVS --to-stdout $(WOAPP_DIR_NAME) | (cd $(GNUSTEP_WOAPPS); $(TAR) xf -))
+ $(TAR) ch --exclude=CVS --exclude=.svn --to-stdout $(WOAPP_DIR_NAME) | (cd $(GNUSTEP_WOAPPS); $(TAR) xf -))
ifneq ($(CHOWN_TO),)
$(CHOWN) -R $(CHOWN_TO) $(GNUSTEP_WOAPPS)/$(WOAPP_DIR_NAME)
endif
internal-wobundle-install_:: $(WOBUNDLE_INSTALL_DIR) shared-instance-headers-install
rm -rf $(WOBUNDLE_INSTALL_DIR)/$(WOBUNDLE_DIR_NAME); \
- $(TAR) chf - --exclude=CVS --to-stdout $(WOBUNDLE_DIR_NAME) | (cd $(WOBUNDLE_INSTALL_DIR); $(TAR) xf -)
+ $(TAR) chf - --exclude=CVS --exclude=.svn --to-stdout $(WOBUNDLE_DIR_NAME) | (cd $(WOBUNDLE_INSTALL_DIR); $(TAR) xf -)
ifneq ($(CHOWN_TO),)
$(CHOWN) -R $(CHOWN_TO) $(WOBUNDLE_INSTALL_DIR)/$(WOBUNDLE_DIR_NAME)
endif