diff options
author | duerpei <duep.fnst@fujitsu.com> | 2022-05-13 14:32:49 +0800 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2022-05-16 12:11:21 +0000 |
commit | b3bb31eee08535ea97560bf6fc0f1d56292fee0a (patch) | |
tree | 839cdfdd0837d3ad70b25c8e7a3a0e377b945a6b /recipes-graphics | |
parent | 0e0814a6f853a2631c36a0ec9dbcc1f78ff59e87 (diff) |
Replace "/etc" with "${sysconfidir}"
make them more standardized
Bug-AGL: SPEC-4374
Signed-off-by: duerpei <duep.fnst@fujitsu.com>
Change-Id: I869eeef40a539b7fc085ac1cb969e8c4699f131f
Diffstat (limited to 'recipes-graphics')
-rw-r--r-- | recipes-graphics/kms-conf/kms-conf_1.0.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes-graphics/kms-conf/kms-conf_1.0.bb b/recipes-graphics/kms-conf/kms-conf_1.0.bb index c2ac9c5d2..4a665a49b 100644 --- a/recipes-graphics/kms-conf/kms-conf_1.0.bb +++ b/recipes-graphics/kms-conf/kms-conf_1.0.bb @@ -7,6 +7,6 @@ SRC_URI = " \ " do_install:append() { - install -d ${D}/etc - install -m 644 ${WORKDIR}/kms.conf ${D}/etc + install -d ${D}${sysconfdir} + install -m 644 ${WORKDIR}/kms.conf ${D}${sysconfdir} } |