This commit is contained in:
Jonathan Hui
2020-01-23 19:48:38 +00:00
3 changed files with 7 additions and 3 deletions
+1 -1
View File
@@ -1 +1 @@
1.6.14
1.6.16
+4
View File
@@ -1,3 +1,7 @@
1.6.16 (2020-01-23)
* Allow absolute paths in PRETTY_FILES.
1.6.15 (2019-12-06)
* Remove redundant libtool m4 libraries.
@@ -47,8 +47,8 @@
define nl-make-pretty
$(AM_V_at)for file in $(4); do \
$(1) \
if test -f $${file}; then d=.; else d=$(srcdir); fi; \
$(2) $(3) $${d}/$${file} \
if test -f $${file}; then d=; else d=$(srcdir)/; fi; \
$(2) $(3) $${d}$${file} \
|| exit 1; \
done
endef