zsh-workers
 help / color / mirror / code / Atom feed
* PATCH: make targz-src on BSD.
@ 2000-05-06  8:04 Tanaka Akira
  0 siblings, 0 replies; only message in thread
From: Tanaka Akira @ 2000-05-06  8:04 UTC (permalink / raw)
  To: zsh-workers

I found that `make targz-src' doesn't work on FreeBSD.  (and with
other BSDish find?).  Because *.* matches . itself.

Index: Util/mkdisttree.sh
===================================================================
RCS file: /cvsroot/zsh/zsh/Util/mkdisttree.sh,v
retrieving revision 1.2
diff -u -r1.2 mkdisttree.sh
--- Util/mkdisttree.sh	2000/04/05 19:30:39	1.2
+++ Util/mkdisttree.sh	2000/05/06 08:01:12
@@ -46,7 +46,7 @@
 trap 'rm -f $filelist; rm -rf $disttree; exit 1' 1 2 15
 (
     cd $sdir_top
-    find . -name '*.*' -prune -o -name .distfiles -print
+    find . -name '?*.*' -prune -o -name .distfiles -print
 ) > $filelist
 ( while read dfn; do
     subdir=`echo $dfn | sed 's,/\.distfiles$,,'`
-- 
Tanaka Akira


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2000-05-06  8:04 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2000-05-06  8:04 PATCH: make targz-src on BSD Tanaka Akira

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).