svn commit: r368404 - head/tools/tools/locale

Hiroki Sato hrs at FreeBSD.org
Mon Dec 7 04:45:30 UTC 2020


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


More information about the svn-src-head mailing list