From 16f3a105cfed7655478fd160336f2d5821d9b861 Mon Sep 17 00:00:00 2001 From: Seeker Date: Mon, 6 Jul 2020 09:43:29 -0700 Subject: [PATCH] Fix #11 --- GNUmakefile.in | 4 ++-- configure.in | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/GNUmakefile.in b/GNUmakefile.in index 152e10a..3745685 100644 --- a/GNUmakefile.in +++ b/GNUmakefile.in @@ -2,7 +2,7 @@ PY_MODULES= afm.py tfm.py FILES= mftrace.py GNUmakefile.in \ - gf2pbm.c mftrace.1 \ + gf2pbm.c gf2pbm.1 mftrace.1 \ COPYING \ README.texi README.txt ChangeLog \ mftrace.spec.in mftrace.spec \ @@ -36,7 +36,7 @@ all: compile compile: mftrace gf2pbm version.texi: GNUmakefile - echo -e '@macro mftversion\n$(VERSION)\n@end macro\n' > $@ + printf '@macro mftversion\n$(VERSION)\n@end macro\n' > $@ README.txt: README.texi version.texi makeinfo --no-split --no-headers --output $@ $< diff --git a/configure.in b/configure.in index 8ce4469..cf07a13 100644 --- a/configure.in +++ b/configure.in @@ -6,7 +6,7 @@ AC_PATH_PROG(AUTOTRACE, autotrace, none) AC_PATH_PROG(POTRACE, potrace, none) AC_SUBST(PYTHON) -export VERSION="1.2.19" +export VERSION="1.2.21" AC_SUBST(VERSION) AC_SUBST(EXEEXT)