aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support
diff options
context:
space:
mode:
authorAdrian Freihofer <adrian.freihofer@gmail.com>2022-04-06 13:34:34 +0200
committerKhem Raj <raj.khem@gmail.com>2022-04-07 17:32:48 -0400
commitb9e440ead8908280041e87a5a8abe03718c808ad (patch)
treee1ceb7392cf549361ca6f2efa2427f244b2d48f4 /meta-oe/recipes-support
parent41b44264e36cb4d7c63176b8f695e3c7515e6fae (diff)
downloadmeta-openembedded-contrib-b9e440ead8908280041e87a5a8abe03718c808ad.tar.gz
srecord: build fix
build failed with: ln: failed to create symbolic link '...srecord-1.64/configure.ac': File exists As expected, the existing file was a symlink pointing to etc/configure.ac Signed-off-by: Adrian Freihofer <adrian.freihofer@siemens.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support')
-rw-r--r--meta-oe/recipes-support/srecord/srecord_1.64.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/recipes-support/srecord/srecord_1.64.bb b/meta-oe/recipes-support/srecord/srecord_1.64.bb
index 85deabde17..5765272ce8 100644
--- a/meta-oe/recipes-support/srecord/srecord_1.64.bb
+++ b/meta-oe/recipes-support/srecord/srecord_1.64.bb
@@ -21,7 +21,7 @@ inherit autotools-brokensep
do_configure:prepend() {
# To autoreconf we need the script in ${S}, we can't tell autotools to use
# etc/ because then it can't find the Makefile.in
- ln -s ${S}/etc/configure.ac ${S}
+ ln -sf ${S}/etc/configure.ac ${S}
}
PACKAGECONFIG ??= "gcrypt"