From 6c9838ca719b9b7754c2ade0aa5eecf91c7963ae Mon Sep 17 00:00:00 2001 From: Hiroki Sato Date: Mon, 7 Dec 2020 04:45:29 +0000 Subject: [PATCH] Fix the source directory when installing the results. The install target did not install them actually. Spotted by: Thomas Munro, bapt, yuripv --- tools/tools/locale/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/tools/locale/Makefile b/tools/tools/locale/Makefile index 51de1868a52e..a3913b46fbdb 100644 --- a/tools/tools/locale/Makefile +++ b/tools/tools/locale/Makefile @@ -95,6 +95,7 @@ install: install-${t} install-${t}: cd ${LOCALESRCDIR}/${t} && \ rm -f Makefile *.src && \ + cd ${.OBJDIR} && \ install -c ${t}/* ${LOCALESRCDIR}/${t} . endif .endfor