On 04/24/2016 09:53 PM, Miller Puckette wrote: > know I introduced teh error but have no idea how it got fixed, nor > why you still see the erroneous version (with trailing backslash).
attached you find a patch that updates the documentation in linux/README.txt to create a list of files in doc/ that does not end with a stray backslash (by adding a dummy line after the last file). this might help to prevent *that* error in the future... gfmadrs IOhannes
From 17c98dff632c675628dabdca3878f0dec823b84c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= <[email protected]> Date: Tue, 26 Apr 2016 23:47:47 +0200 Subject: [PATCH 3/3] simplify way to update the doc list in Makefile.am append a line-continuation '\' to each line, and then add a dummy empty line by means of a '$(empty)' variable --- Makefile.am | 5 ++++- linux/README.txt | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index b022bef..e14c648 100644 --- a/Makefile.am +++ b/Makefile.am @@ -4,6 +4,8 @@ ACLOCAL_AMFLAGS = -I m4/generated -I m4 CFLAGS += @DEFS@ EXTRA_SUBDIRS = +empty="" + # pkg-config support pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = pd.pc @@ -477,5 +479,6 @@ nobase_dist_libpd_DATA = \ doc/7.stuff/tools/testtone.pd \ doc/sound/bell.aiff \ doc/sound/voice2.wav \ - doc/sound/voice.wav + doc/sound/voice.wav \ + $(empty) diff --git a/linux/README.txt b/linux/README.txt index cd91021..a993ff4 100644 --- a/linux/README.txt +++ b/linux/README.txt @@ -1,6 +1,6 @@ release checklist update Makefile.am doc list: cd pd; - find doc -type f | sort | awk '{print " ", $1, "\\"}' + find doc -type f | sort | awk '{print " ", $1, "\\"}'; echo ' $(empty)' version string in ../src/m_pd.h ../configure.ac ../src/pd.rc release notes ../doc/1.manual/x5.htm copyright date in ../README.txt -- 2.8.1
signature.asc
Description: OpenPGP digital signature
_______________________________________________ Pd-dev mailing list [email protected] https://lists.puredata.info/listinfo/pd-dev
