diff options
author | Akira TAGOH <akira@tagoh.org> | 2017-12-05 21:57:19 +0900 |
---|---|---|
committer | Akira TAGOH <akira@tagoh.org> | 2017-12-05 21:57:19 +0900 |
commit | a6797cd5c2d430d22f689240eb4318f2d91fd677 (patch) | |
tree | 0a14f51a409bf5fb6297eb562b50435a0747c6c4 /test/Makefile.am | |
parent | 1b2279d6b5118fc00bc028340d14fe1e345a4ab4 (diff) |
Fix distcheck error
Diffstat (limited to 'test/Makefile.am')
-rw-r--r-- | test/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Makefile.am b/test/Makefile.am index 2e7f2433..245853f8 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -17,10 +17,10 @@ TESTDATA=4x6.pcf 8x16.pcf out.expected fonts.conf.in if FREETYPE_PCF_LONG_FAMILY_NAMES out.expected: $(srcdir)/out.expected-long-family-names - cp $(srcdir)/out.expected-long-family-names out.expected + cp $(srcdir)/out.expected-long-family-names $(builddir)/out.expected else out.expected: $(srcdir)/out.expected-no-long-family-names - cp $(srcdir)/out.expected-no-long-family-names out.expected + cp $(srcdir)/out.expected-no-long-family-names $(builddir)/out.expected endif AM_CPPFLAGS = -I$(top_srcdir) -I$(top_builddir) |