mk/tmpl/inst
Neal H. Walfield
neal at walfield.org
Wed Jul 4 17:16:51 CEST 2007
mk/tmpl/inst correctly excludes CVS files, however, it does not
exclude .svn files, which it ought since the code is now managed under
svn. The attached patch corrects this deficiency.
Neal
Index: mk/tmpl/inst
===================================================================
--- mk/tmpl/inst (revision 74)
+++ mk/tmpl/inst (working copy)
@@ -10,4 +10,4 @@
TARGETDIR="`pwd`"
TOINSTALL="MAINTAINER Makefile idl include lib server examples doc ptest"
-tar c -C $SRCDIR -f- --exclude=CVS $TOINSTALL | tar xvf -
+tar c -C $SRCDIR -f- --exclude=CVS --exclude=.svn $TOINSTALL | tar xvf -
More information about the l4-hackers
mailing list