Squashed 'third_party/nlbuild-autotools/repo/' changes from b1b93c9d..4cbe14a4

4cbe14a4 Update version to 1.6.16.
7adbffbc Merge pull request #30 from bukepo/pretty/support-abs
2ac7f5da Add absolute path support for pretty

git-subtree-dir: third_party/nlbuild-autotools/repo
git-subtree-split: 4cbe14a4adb8702d81a63fd663bf046407908def
This commit is contained in:
Jonathan Hui
2020-01-23 19:48:38 +00:00
parent 8e95e5e34c
commit ba22751658
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.
+2 -2
View File
@@ -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