mirror of
https://git.yoctoproject.org/poky
synced 2026-05-05 20:27:58 +02:00
base-files: Avoid problems if DISTRO_VERSION contains undefined variable
If DISTRO_VERSION is defined to some undefined variable, e.g.,
DISTRO_VERSION = "${FOO_VERSION}", and /bin/sh is dash, then
do_install() would fail with an error such as:
run.do_install.2945:193: run.do_install.2945: Syntax error:
Unterminated quoted string
This was due to unexpanded Python code making it into the shell code,
confusing the shell parser.
Reported-by: srinivasan <srinivasan.rns@gmail.com>
(From OE-Core rev: fdd0b9e26ef11fa287692848ea3add64ba623433)
Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
6ad8d2ce27
commit
e21c1e52a5
@@ -150,7 +150,7 @@ do_install_basefilesissue () {
|
||||
printf "${DISTRO_NAME} " >> ${D}${sysconfdir}/issue
|
||||
printf "${DISTRO_NAME} " >> ${D}${sysconfdir}/issue.net
|
||||
if [ -n "${DISTRO_VERSION}" ]; then
|
||||
distro_version_nodate=${@'${DISTRO_VERSION}'.replace('snapshot-${DATE}','snapshot').replace('${DATE}','')}
|
||||
distro_version_nodate="${@d.getVar('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
|
||||
|
||||
Reference in New Issue
Block a user