diff options
author | Phil Blundell <philb@gnu.org> | 2009-06-12 18:40:34 +0100 |
---|---|---|
committer | Phil Blundell <philb@gnu.org> | 2009-06-12 18:40:34 +0100 |
commit | f29aea68c351096f4e3aa7e7bf05820e79d92e4c (patch) | |
tree | ebf6df931737f3469d5b7759e538da1078ce03a2 | |
parent | aa96a85c64a9d51c0f8872529e942f7afa93cc35 (diff) |
base-files: handle DISTRO=micro-uclibc correctly
-rw-r--r-- | recipes/base-files/base-files_3.0.14.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/base-files/base-files_3.0.14.bb b/recipes/base-files/base-files_3.0.14.bb index 98dd00dc37..c974dd9cee 100644 --- a/recipes/base-files/base-files_3.0.14.bb +++ b/recipes/base-files/base-files_3.0.14.bb @@ -93,7 +93,7 @@ do_install () { echo ${hostname} > ${D}${sysconfdir}/hostname fi - if [ "${DISTRO}" != "micro" ]; then + if [ "${DISTRO}" != "micro" -a "${DISTRO}" != "micro-uclibc" ]; then install -m 644 ${WORKDIR}/issue* ${D}${sysconfdir} if [ -n "${DISTRO_NAME}" ]; then |