We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63814cb commit 0cd134aCopy full SHA for 0cd134a
recipes-demos/html5-demo/html5-demo_git.bb
@@ -5,14 +5,17 @@ LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda
5
SRC_URI = "git://github.com/OSSystems/${BPN}.git;protocol=https;branch=master"
6
SRCREV = "e9ede7082b9e9e919e25b3a147d18e46dc3802f0"
7
8
-S = "${WORKDIR}/git"
+# Remove Workdir, since that newest versions go to ${S} directly
9
+#S = "${WORKDIR}/git"
10
11
do_configure[noexec] = "1"
12
do_compile[noexec] = "1"
13
14
do_install() {
15
install -d ${D}${datadir}/${PN}
- cp -rf ${WORKDIR}/git/* ${D}${datadir}/${PN}
16
+ # cp -rf ${S}/. ${D}${datadir}/${PN}
17
+ # update copy to a more robust command
18
+ cp -r ${S}/[!.]* ${D}${datadir}/${PN}
19
}
20
21
FILES:${PN} += "${datadir}/${PN}"
0 commit comments