diff options
author | Yann E. MORIN <yann.morin.1998@free.fr> | 2013-01-12 13:50:32 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2013-01-13 20:53:46 +0100 |
commit | afb80a1b28409fdd44a1cd4ffd8ea4df048f8623 (patch) | |
tree | f6ae906b353208cbeabefd0aa258f2b1caec185e | |
parent | 2b7074cfa1c75b58249e1a65d940c4cc30f28f3d (diff) | |
download | buildroot-novena-afb80a1b28409fdd44a1cd4ffd8ea4df048f8623.tar.gz buildroot-novena-afb80a1b28409fdd44a1cd4ffd8ea4df048f8623.zip |
package/dvb-apps: fix licensing terms when utils are enabled
When the dvb-apps utilities are selected, the license is clearly a
mix of GPLv2, GPLv2+ and LGPLv2.1+; this, in addition to the initial
unknown license for the transponders data.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r-- | package/dvb-apps/dvb-apps.mk | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/package/dvb-apps/dvb-apps.mk b/package/dvb-apps/dvb-apps.mk index ee4aadb51..86af82497 100644 --- a/package/dvb-apps/dvb-apps.mk +++ b/package/dvb-apps/dvb-apps.mk @@ -21,6 +21,9 @@ DVB_APPS_LICENSE = unknown (probably public domain) ifeq ($(BR2_PACKAGE_DVB_APPS_UTILS),y) # Utilitiess are selected, build and install everything +DVB_APPS_LICENSE += GPLv2 GPLv2+ LGPLv2.1+ +DVB_APPS_LICENSE_FILES += COPYING COPYING.LGPL + DVB_APPS_LDFLAGS = $(TARGET_LDFLAGS) ifeq ($(BR2_ENABLE_LOCALE),) |