Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 27 Jan 2017 09:11:44 +0000 (UTC)
From:      Julian Elischer <julian@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org
Subject:   svn commit: r312871 - stable/11/share/zoneinfo
Message-ID:  <201701270911.v0R9BiQr000147@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: julian
Date: Fri Jan 27 09:11:44 2017
New Revision: 312871
URL: https://svnweb.freebsd.org/changeset/base/312871

Log:
  MFH: r308671
  
  When you select make OLDTIMEZONES=1 then you need a few added directories
  to be made or the command fails
  
  Sponsored by:	panzura
  
  MFH: r310426
  
  If you are going to be run individually to make a new timezone set
  then ensure the destination directories exist.
  Especially if you define OLDTIMEZONES because the mtree pass
  doesn't do it for you.
  
  Sponsored by:	Panzura

Modified:
  stable/11/share/zoneinfo/Makefile
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/share/zoneinfo/Makefile
==============================================================================
--- stable/11/share/zoneinfo/Makefile	Fri Jan 27 09:07:11 2017	(r312870)
+++ stable/11/share/zoneinfo/Makefile	Fri Jan 27 09:11:44 2017	(r312871)
@@ -67,6 +67,10 @@ TZBUILDSUBDIRS=	\
 		Pacific \
 		SystemV
 
+.if defined(OLDTIMEZONES)
+TZBUILDSUBDIRS+= US Mexico Chile Canada Brazil
+.endif
+
 .if !defined(_SKIP_BUILD)
 all: zoneinfo
 .endif
@@ -81,6 +85,8 @@ zoneinfo: yearistype ${TDATA}
 
 beforeinstall: install-zoneinfo
 install-zoneinfo:
+	mkdir -p ${DESTDIR}/usr/share/zoneinfo
+	cd ${DESTDIR}/usr/share/zoneinfo;  mkdir -p ${TZBUILDSUBDIRS}
 	cd ${TZBUILDDIR} && \
 	    find -s * -type f -print -exec ${INSTALL} ${TAG_ARGS} \
 	    -o ${BINOWN} -g ${BINGRP} -m ${NOBINMODE} \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201701270911.v0R9BiQr000147>