summaryrefslogtreecommitdiff
path: root/tests/tr
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2002-01-18 23:56:32 +0000
committerJim Meyering <jim@meyering.net>2002-01-18 23:56:32 +0000
commit8e7e29d1de6823fc4f4e98c873c58d904a1e7b36 (patch)
tree8d002ab61ab4b4db9c452e3cdb194ccb3f142bd9 /tests/tr
parent96efa91b23b142fa1d1f49a2ccfd97f166a590a3 (diff)
downloadcoreutils-8e7e29d1de6823fc4f4e98c873c58d904a1e7b36.tar.xz
.
Diffstat (limited to 'tests/tr')
-rw-r--r--tests/tr/Makefile.in13
1 files changed, 9 insertions, 4 deletions
diff --git a/tests/tr/Makefile.in b/tests/tr/Makefile.in
index 6fe20b5ec..43c698772 100644
--- a/tests/tr/Makefile.in
+++ b/tests/tr/Makefile.in
@@ -125,7 +125,8 @@ range-a-a.X null.I null.X upcase.I upcase.X dncase.I dncase.X rep-cclass.I \
rep-cclass.X rep-1.I rep-1.X rep-2.I rep-2.X rep-3.I rep-3.X o-rep-1.I \
o-rep-1.X o-rep-2.I o-rep-2.X esc.I esc.X ross-0a.I ross-0a.X ross-0b.I \
ross-0b.X ross-1a.I ross-1a.X ross-1b.I ross-1b.X ross-2.I ross-2.X ross-3.I \
-ross-3.X ross-4.I ross-4.X ross-5.I ross-5.X ross-6.I ross-6.X
+ross-3.X ross-4.I ross-4.X ross-5.I ross-5.X ross-6.I ross-6.X empty-eq.I \
+empty-eq.X empty-cc.I empty-cc.X
run_gen = 1.O 1.E 2.O 2.E 3.O 3.E 4.O 4.E 5.O 5.E 6.O 6.E 7.O 7.E 8.O 8.E 9.O \
9.E a.O a.E b.O b.E c.O c.E d.O d.E e.O e.E f.O f.E g.O g.E h.O h.E i.O i.E \
@@ -135,7 +136,8 @@ range-a-a.E null.O null.E upcase.O upcase.E dncase.O dncase.E rep-cclass.O \
rep-cclass.E rep-1.O rep-1.E rep-2.O rep-2.E rep-3.O rep-3.E o-rep-1.O \
o-rep-1.E o-rep-2.O o-rep-2.E esc.O esc.E ross-0a.O ross-0a.E ross-0b.O \
ross-0b.E ross-1a.O ross-1a.E ross-1b.O ross-1b.E ross-2.O ross-2.E ross-3.O \
-ross-3.E ross-4.O ross-4.E ross-5.O ross-5.E ross-6.O ross-6.E
+ross-3.E ross-4.O ross-4.E ross-5.O ross-5.E ross-6.O ross-6.E empty-eq.O \
+empty-eq.E empty-cc.O empty-cc.E
EXTRA_DIST = Test.pm $x-tests $(explicit) $(maint_gen)
@@ -233,10 +235,13 @@ distdir: $(DISTFILES)
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
if test "$$dir" != "$$file" && test "$$dir" != "."; then \
- $(mkinstalldirs) "$(distdir)/$$dir"; \
+ dir="/$$dir"; \
+ $(mkinstalldirs) "$(distdir)$$dir"; \
+ else \
+ dir=''; \
fi; \
if test -d $$d/$$file; then \
- cp -pR $$d/$$file $(distdir) \
+ cp -pR $$d/$$file $(distdir)$$dir \
|| exit 1; \
else \
test -f $(distdir)/$$file \