ref: 376368b46b9d5f454b8f0075bfb2e843367ca618
parent: 3524a67dd3c7d48a172c83d3ae170a7176fb3cfa
author: Jessica Clarke <jrtc27@jrtc27.com>
date: Thu Jul 29 15:36:09 EDT 2021
textscreen: Fix out-of-tree HAVE_FONTS build
--- a/textscreen/fonts/Makefile.am
+++ b/textscreen/fonts/Makefile.am
@@ -6,13 +6,13 @@
if HAVE_FONTS
small.h: small.png convert-font
- ./convert-font small small.png small.h
+ $(srcdir)/convert-font small small.png small.h
normal.h: normal.png convert-font
- ./convert-font normal normal.png normal.h
+ $(srcdir)/convert-font normal normal.png normal.h
large.h: large.png convert-font
- ./convert-font large large.png large.h
+ $(srcdir)/convert-font large large.png large.h
endif