1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
Description: use packaged tools instead of embedded copies
Author: Ricardo Mones <mones@debian.org>
Forwarded: not-needed
Last-Update: 2020-09-05
--- a/Makefile.posix.inc
+++ b/Makefile.posix.inc
@@ -8,7 +8,7 @@
CHECK_NOT_EXIST_FILE = test ! -f
RENAME_FILE = mv -f
-PYTHON = python
+PYTHON = python3
PERL = perl
TARGZ = GZIP=-9 tar czf
@@ -28,4 +28,4 @@
CVS2CL = devtools/cvs2cl.pl -bPS --revisions --gmt --fsf --FSF
-SYSTBASE = $(shell uname -s | tr "[:upper:]" "[:lower:]")
\ No newline at end of file
+SYSTBASE = $(shell uname -s | tr "[:upper:]" "[:lower:]")
--- a/doc/Makefile.posix.inc
+++ b/doc/Makefile.posix.inc
@@ -2,6 +2,6 @@
include Makefile.defs
include Makefile.inc
-T2T = ../devtools/txt2tags.py --no-rc
-HTML2PS = ../devtools/html2ps.pl -f html2ps.cfg
+T2T = /usr/bin/txt2tags --no-rc
+HTML2PS = /usr/bin/html2ps -f html2ps.cfg
PS2PDF = ps2pdf
|