From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dan.rpsys.net (5751f4a1.skybroadband.com [87.81.244.161]) by mail.openembedded.org (Postfix) with ESMTP id 182157782E for ; Sat, 11 Mar 2017 16:22:56 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by dan.rpsys.net (8.14.4/8.14.4/Debian-4.1ubuntu1) with ESMTP id v2BGK2Aj026295; Sat, 11 Mar 2017 16:22:55 GMT Received: from dan.rpsys.net ([127.0.0.1]) by localhost (dan.rpsys.net [127.0.0.1]) (amavisd-new, port 10024) with LMTP id aOT_Gfo2o8Oq; Sat, 11 Mar 2017 16:22:55 +0000 (GMT) Received: from hex ([192.168.3.34]) (authenticated bits=0) by dan.rpsys.net (8.14.4/8.14.4/Debian-4.1ubuntu1) with ESMTP id v2BGMoiJ026335 (version=TLSv1/SSLv3 cipher=AES128-GCM-SHA256 bits=128 verify=NOT); Sat, 11 Mar 2017 16:22:51 GMT Message-ID: <1489249370.13980.21.camel@linuxfoundation.org> From: Richard Purdie To: Alexander Kanavin , openembedded-core@lists.openembedded.org Date: Sat, 11 Mar 2017 16:22:50 +0000 In-Reply-To: <1489231377.13980.8.camel@linuxfoundation.org> References: <3f1ae965face4644d3d1998d8fd3c21e6ef20711.1489144807.git.alexander.kanavin@linux.intel.com> <1489231377.13980.8.camel@linuxfoundation.org> X-Mailer: Evolution 3.18.5.2-0ubuntu3.1 Mime-Version: 1.0 Subject: Re: [PATCH 43/44] base-files: do not write the current date into /etc/issue and /etc/issue.net X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 11 Mar 2017 16:22:57 -0000 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit On Sat, 2017-03-11 at 11:22 +0000, Richard Purdie wrote: > On Fri, 2017-03-10 at 13:24 +0200, Alexander Kanavin wrote: > > diff --git a/meta/recipes-core/base-files/base-files_3.0.14.bb > > b/meta/recipes-core/base-files/base-files_3.0.14.bb > > index d1380053115..c7a9e803cb1 100644 > > --- a/meta/recipes-core/base-files/base-files_3.0.14.bb > > +++ b/meta/recipes-core/base-files/base-files_3.0.14.bb > > @@ -145,8 +145,9 @@ do_install_basefilesissue () { > >   printf "${DISTRO_NAME} " >> > > ${D}${sysconfdir}/issue > >   printf "${DISTRO_NAME} " >> > > ${D}${sysconfdir}/issue.net > >   if [ -n "${DISTRO_VERSION}" ]; then > > - printf "${DISTRO_VERSION} " >> > > ${D}${sysconfdir}/issue > > - printf "${DISTRO_VERSION} " >> > > ${D}${sysconfdir}/issue.net > > + distro_version_nodate=${@'${DISTRO_VERSION > > }' > > .replace('snapshot-${DATE}','snapshot').replace('${DATE}','')} > > + printf "%s " $distro_version_nodate >> > > ${D}${sysconfdir}/issue > > + printf "%s " $distro_version_nodate >> > > ${D}${sysconfdir}/issue.net > >   fi > >   printf "\\\n \\\l\n" >> ${D}${sysconfdir}/issue > >   echo >> ${D}${sysconfdir}/issue > > https://autobuilder.yocto.io/builders/nightly-oe-selftest/builds/213/ > steps/Running%20oe-selftest/logs/stdio > > You probably need a vardepsexclude on DATE here... I fixed that and merged this... Cheers, Richard