Fix depoly path variable in mkdir

This commit was merged in pull request #11.
This commit is contained in:
2023-07-20 12:24:51 +02:00
parent c96db27895
commit 50a2e25a9b
3 changed files with 12 additions and 12 deletions

View File

@@ -1,8 +1,8 @@
MACHINE ?= "genericx86-64"
DL_DIR ?= "${TOPDIR}/downloads"
DL_DIR ?= "${TOPDIR}/../downloads"
SSTATE_DIR ?= "${TOPDIR}/sstate-cache"
SSTATE_DIR ?= "${TOPDIR}/../sstate-cache"
DISTRO ?= "caros"
@@ -118,4 +118,4 @@ BB_DISKMON_DIRS ??= "\
# this doesn't mean anything to you.
CONF_VERSION = "2"
DEPLOY_DIR_RPM = "${TOPDIR}../deploy_rpms"
DEPLOY_DIR_RPM = "${TOPDIR}/../deploy_rpms"