Date: Mon, 7 Dec 2020 04:45:29 +0000 (UTC) From: Hiroki Sato <hrs@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r368404 - head/tools/tools/locale Message-ID: <202012070445.0B74jTB1057889@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: hrs Date: Mon Dec 7 04:45:29 2020 New Revision: 368404 URL: https://svnweb.freebsd.org/changeset/base/368404 Log: Fix the source directory when installing the results. The install target did not install them actually. Spotted by: Thomas Munro, bapt, yuripv Modified: head/tools/tools/locale/Makefile Modified: head/tools/tools/locale/Makefile ============================================================================== --- head/tools/tools/locale/Makefile Mon Dec 7 01:09:45 2020 (r368403) +++ head/tools/tools/locale/Makefile Mon Dec 7 04:45:29 2020 (r368404) @@ -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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202012070445.0B74jTB1057889>