diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-07-03 10:41:57 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-11-07 15:12:00 +0000 |
commit | c960514cc02fc02950c2ad52a1e39ff65a04e83d (patch) | |
tree | 92058030ab22c5022e7ac1ced9bba27f5d67f36d /meta/recipes-connectivity | |
parent | 369ef217ff8a0a765b80cf0bfaaf30dcd2669b13 (diff) | |
download | poky-c960514cc02fc02950c2ad52a1e39ff65a04e83d.tar.gz |
dhcp/ruby/ffpmeg: Use CFLAGS, not TARGET_CFLAGS
There isn't anything specific about the target in these cases an in
general recipes should touch CFLAGS. This ensures people don't
copy/paste bad example usages. In reality, behaviour is mostly
unchanged.
(From OE-Core rev: ae6e7dd19b6da81090a38792dfdf31b459290466)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity')
-rw-r--r-- | meta/recipes-connectivity/dhcp/dhcp.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-connectivity/dhcp/dhcp.inc b/meta/recipes-connectivity/dhcp/dhcp.inc index 18bbaf8841..c4697beaf1 100644 --- a/meta/recipes-connectivity/dhcp/dhcp.inc +++ b/meta/recipes-connectivity/dhcp/dhcp.inc | |||
@@ -43,7 +43,7 @@ INITSCRIPT_PACKAGES = "dhcp-server" | |||
43 | INITSCRIPT_NAME_dhcp-server = "dhcp-server" | 43 | INITSCRIPT_NAME_dhcp-server = "dhcp-server" |
44 | INITSCRIPT_PARAMS_dhcp-server = "defaults" | 44 | INITSCRIPT_PARAMS_dhcp-server = "defaults" |
45 | 45 | ||
46 | TARGET_CFLAGS += "-D_GNU_SOURCE" | 46 | CFLAGS += "-D_GNU_SOURCE" |
47 | EXTRA_OECONF = "--with-srv-lease-file=${localstatedir}/lib/dhcp/dhcpd.leases \ | 47 | EXTRA_OECONF = "--with-srv-lease-file=${localstatedir}/lib/dhcp/dhcpd.leases \ |
48 | --with-srv6-lease-file=${localstatedir}/lib/dhcp/dhcpd6.leases \ | 48 | --with-srv6-lease-file=${localstatedir}/lib/dhcp/dhcpd6.leases \ |
49 | --with-cli-lease-file=${localstatedir}/lib/dhcp/dhclient.leases \ | 49 | --with-cli-lease-file=${localstatedir}/lib/dhcp/dhclient.leases \ |