]> git.michaelhowe.org Git - packages/o/openafs.git/commitdiff
* Exclude .svn directories from the modules source tarball.
authorRuss Allbery <rra@debian.org>
Sun, 17 Apr 2005 07:27:20 +0000 (07:27 +0000)
committerRuss Allbery <rra@debian.org>
Sun, 17 Apr 2005 07:27:20 +0000 (07:27 +0000)
debian/changelog
debian/rules

index dc6560c4a89a577500be882b0c50e0ffdaa8d571..97ae6791b5074b1f7332b0fc3fe5e16d55c4072c 100644 (file)
@@ -7,6 +7,7 @@ openafs (1.3.81-4) unstable; urgency=low
     Jonas Smedegaard.  (Closes: #206403)
   * Add a check to afs-newcell to ensure the local hostname doesn't
     resolve to 127.0.0.1.  (Closes: #163751)
+  * Exclude .svn directories from the modules source tarball.
 
  -- Russ Allbery <rra@stanford.edu>  Sun, 17 Apr 2005 00:00:27 -0700
 
index 91fb1711f50d86ddd3b228e349f240e7a0eb082c..114fa6b18220f0026571c83db830500bf0eea761 100755 (executable)
@@ -202,11 +202,12 @@ binary-source:
        install -d debian/$(srcpkg)
 # Clean up the sources 
        install -d debian/$(srcpkg)/usr/src/modules/$(package)
-       find . \( -name \*.o -o -path ./debian/$(srcpkg) -o -path \*/CVS -o -path ./src/WINNT  \
+       find . \( -name \*.o -o -path ./debian/$(srcpkg) -o -path \*/CVS \
+               -o -path \*/.svn -o -path ./src/WINNT  \
                -o -path ./obj -o -path ./$(SYS_NAME)  \
-       -o \( -path ./debian/\* -type d \) \
-       -o -path ./debian/\*debhelper \) -prune -o -print | \
-               cpio -admp debian/$(srcpkg)/usr/src/modules/$(package)
+               -o \( -path ./debian/\* -type d \) \
+               -o -path ./debian/\*debhelper \) -prune -o -print | \
+                       cpio -admp debian/$(srcpkg)/usr/src/modules/$(package)
        ( cd debian/$(srcpkg)/usr/src/modules/$(package)&& \
                $(MAKE) -f debian/rules clean && \
        rm -rf src/libafs/rx src/libafs/afs src/libafs/afsint; \