diff options
author | tv <tv@pkgsrc.org> | 2005-10-31 18:09:42 +0000 |
---|---|---|
committer | tv <tv@pkgsrc.org> | 2005-10-31 18:09:42 +0000 |
commit | c90d5ff6f1eff20308c9cd2f9db974f52b7514c0 (patch) | |
tree | caecfef65d035275ddaaffa697f8a12913f84670 /cad/atlc | |
parent | 36d7249f846d95a244997b6c1d570854c0bf97f8 (diff) | |
download | pkgsrc-c90d5ff6f1eff20308c9cd2f9db974f52b7514c0.tar.gz |
Make "find" command in tests/find-zero-length.test more correct.
Diffstat (limited to 'cad/atlc')
-rw-r--r-- | cad/atlc/distinfo | 3 | ||||
-rw-r--r-- | cad/atlc/patches/patch-aa | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/cad/atlc/distinfo b/cad/atlc/distinfo index dd5834b1981..2db78211937 100644 --- a/cad/atlc/distinfo +++ b/cad/atlc/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.4 2005/02/23 14:59:23 agc Exp $ +$NetBSD: distinfo,v 1.5 2005/10/31 18:09:42 tv Exp $ SHA1 (atlc-4.6.0.tar.gz) = 4c2185e17812925351345465094e2036fefa9724 RMD160 (atlc-4.6.0.tar.gz) = 1923ed83762fec124662c7a628c337f46857ca78 Size (atlc-4.6.0.tar.gz) = 2445849 bytes +SHA1 (patch-aa) = 73158578f1f7ef6f1466a2c875fad1f08bf609fc diff --git a/cad/atlc/patches/patch-aa b/cad/atlc/patches/patch-aa new file mode 100644 index 00000000000..eaf470fe3f8 --- /dev/null +++ b/cad/atlc/patches/patch-aa @@ -0,0 +1,13 @@ +$NetBSD: patch-aa,v 1.1 2005/10/31 18:09:42 tv Exp $ + +--- tests/find-zero-length.test.orig 2003-10-28 17:40:59.000000000 -0500 ++++ tests/find-zero-length.test +@@ -12,7 +12,7 @@ mkdir $top_builddir/tmp 2> /dev/null + rm -f $top_builddir/tmp/atlc-zero-bytes + + # since tmp/atlc-zero-bytes will be found, that must be ignored. +-find $top_srcdir -size 0c | grep -v tmp/atlc-zero-bytes > $top_builddir/tmp/atlc-zero-bytes ++find $top_srcdir -type f -size 0c -print | grep -v tmp/atlc-zero-bytes > $top_builddir/tmp/atlc-zero-bytes + + # The file $top_builddir/tmp/atlc-zero-bytes contains a list of all the + # files which are zero bytes. Hopefully there are none, in |