diff options
author | Konrad Weihmann <kweihmann@outlook.com> | 2020-05-30 22:11:23 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2020-05-31 22:42:25 -0700 |
commit | 68fa0a4ac2b320c1ce92b44ead54df5f4d043a06 (patch) | |
tree | b09fbe32077bbd345f1b9fa5f92866d641ad0a44 | |
parent | cd945f42a0458ea912a36be462e0d8f5436e7c11 (diff) | |
download | meta-openembedded-68fa0a4ac2b320c1ce92b44ead54df5f4d043a06.tar.gz |
passwdqc: remove double modify operation
It is either += or append but not both - picking
append to be the safe bet
Signed-off-by: Konrad Weihmann <kweihmann@outlook.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-security/passwdqc/passwdqc_1.3.1.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/recipes-security/passwdqc/passwdqc_1.3.1.bb b/meta-oe/recipes-security/passwdqc/passwdqc_1.3.1.bb index 504ac1537e..dd302506d7 100644 --- a/meta-oe/recipes-security/passwdqc/passwdqc_1.3.1.bb +++ b/meta-oe/recipes-security/passwdqc/passwdqc_1.3.1.bb | |||
@@ -35,7 +35,7 @@ SRC_URI[sha256sum] = "d1fedeaf759e8a0f32d28b5811ef11b5a5365154849190f4b7fab670a7 | |||
35 | 35 | ||
36 | # explicitly define LINUX_PAM in case DISTRO_FEATURES no pam | 36 | # explicitly define LINUX_PAM in case DISTRO_FEATURES no pam |
37 | # this package's pam_passwdqc.so needs pam | 37 | # this package's pam_passwdqc.so needs pam |
38 | CFLAGS_append += "-Wall -fPIC -DHAVE_SHADOW -DLINUX_PAM" | 38 | CFLAGS_append = " -Wall -fPIC -DHAVE_SHADOW -DLINUX_PAM" |
39 | 39 | ||
40 | # -e is no longer default setting in bitbake.conf | 40 | # -e is no longer default setting in bitbake.conf |
41 | EXTRA_OEMAKE = "-e" | 41 | EXTRA_OEMAKE = "-e" |