diff options
author | Karl Berry <karl@freefriends.org> | 2019-12-26 14:33:09 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2019-12-26 14:33:09 +0000 |
commit | e65e322786ab64aa54e536675504533233635e26 (patch) | |
tree | 5278e5bf294b349b20f6ff257378f029e994ffb2 | |
parent | 9fcc0a557811e8911cfd8971a0585856e64e4f08 (diff) |
install-data-local must mkdir $(web2cdir) now
git-svn-id: svn://tug.org/texlive/trunk@53238 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r-- | Build/source/texk/kpathsea/ChangeLog | 2 | ||||
-rw-r--r-- | Build/source/texk/kpathsea/Makefile.am | 1 | ||||
-rw-r--r-- | Build/source/texk/kpathsea/Makefile.in | 1 |
3 files changed, 4 insertions, 0 deletions
diff --git a/Build/source/texk/kpathsea/ChangeLog b/Build/source/texk/kpathsea/ChangeLog index 4abb99ef9b2..006b4c30f34 100644 --- a/Build/source/texk/kpathsea/ChangeLog +++ b/Build/source/texk/kpathsea/ChangeLog @@ -1,5 +1,7 @@ 2019-12-26 Karl Berry <karl@tug.org> + * Makefile.am (install-data-local): must mkdir web2cdir here. + * mktexdir, * mktexnam, * mktexupd, diff --git a/Build/source/texk/kpathsea/Makefile.am b/Build/source/texk/kpathsea/Makefile.am index 9e27d37fdaa..e4ba90f0335 100644 --- a/Build/source/texk/kpathsea/Makefile.am +++ b/Build/source/texk/kpathsea/Makefile.am @@ -267,6 +267,7 @@ if !WIN32 endif !WIN32 install-data-local: installdirs-am + $(MKDIR_P) '$(DESTDIR)$(web2cdir)' @for f in $(dist_noinst_DATA); do \ if grep "original $$f --" "$(DESTDIR)$(web2cdir)/$$f" >/dev/null 2>&1 \ || test ! -r "$(DESTDIR)$(web2cdir)/$$f"; then \ diff --git a/Build/source/texk/kpathsea/Makefile.in b/Build/source/texk/kpathsea/Makefile.in index 3372979d84f..dd780e2dfd9 100644 --- a/Build/source/texk/kpathsea/Makefile.in +++ b/Build/source/texk/kpathsea/Makefile.in @@ -2424,6 +2424,7 @@ install-exec-local: installdirs-am @WIN32_FALSE@ done install-data-local: installdirs-am + $(MKDIR_P) '$(DESTDIR)$(web2cdir)' @for f in $(dist_noinst_DATA); do \ if grep "original $$f --" "$(DESTDIR)$(web2cdir)/$$f" >/dev/null 2>&1 \ || test ! -r "$(DESTDIR)$(web2cdir)/$$f"; then \ |