Andrew Geissler | fc113ea | 2023-03-31 09:59:46 -0500 | [diff] [blame] | 1 | SUMMARY = "Test case that tries to rename a package to an existing one and fails" |
2 | DESCRIPTION = "This generates a packaging error when a package is renamed to a pre-existing name" | ||||
3 | LICENSE = "MIT" | ||||
4 | |||||
5 | # Add a new package ${PN}-renametest | ||||
6 | PACKAGES += "${PN}-renametest" | ||||
7 | # ... and try to rename the ${PN}-dev to the new ${PN}-renametest (conflict) | ||||
8 | PKG:${PN}-dev = "${PN}-renametest" | ||||
9 | |||||
10 | EXCLUDE_FROM_WORLD = "1" |