]> err.no Git - sope/commitdiff
do not include .svn directories when installing bundles
authorhelge <helge@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Thu, 2 Sep 2004 17:54:50 +0000 (17:54 +0000)
committerhelge <helge@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Thu, 2 Sep 2004 17:54:50 +0000 (17:54 +0000)
git-svn-id: http://svn.opengroupware.org/SOPE/trunk@103 e4a50df8-12e2-0310-a44c-efbce7f8a7e3

sope-appserver/NGObjWeb/ChangeLog
sope-appserver/NGObjWeb/Version
sope-appserver/NGObjWeb/woapp-gs.make
sope-appserver/NGObjWeb/woapp.make
sope-appserver/NGObjWeb/wobundle-gs.make

index d6157bcb75ad14bd394e3c067997fcec0bba5031..cbc3c2864d6251cfb455857797ebcd7e2217f497 100644 (file)
@@ -1,3 +1,8 @@
+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
index b06f94c6b3e4467067e134f6930c02bace639a27..08f450119435d039b4e663f758e8282ab1d09b68 100644 (file)
@@ -1,6 +1,6 @@
 # version file
 
-SUBMINOR_VERSION:=23
+SUBMINOR_VERSION:=24
 
 # v4.2.413 requires libSaxObjC      v4.2.33
 # v4.2.341 requires libNGExtensions v4.2.77
index 9335543530f8e31c8bc79cc76961b6d273702c95..e2ca691da49250244fb5b2e05627ed293bee56f7 100644 (file)
@@ -365,7 +365,7 @@ $(WOAPP_DIR_NAME)/WebServerResources:
 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
index fd73d7775e6cc576ce15cef87096fb996f4a8146..60ddbb0ab73276362e62beb826d1a7e45b5c62fe 100644 (file)
@@ -349,7 +349,7 @@ $(WOAPP_DIR_NAME)/WebServerResources:
 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
index 0d306f56dfb55065e316736e5ca608d8749af908..43371245e5a3819fd1dde32e8285405ea81cce94 100644 (file)
@@ -284,7 +284,7 @@ $(WOBUNDLE_DIR_NAME)/Resources/WebServer:
 
 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