diff options
| author | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-04-22 23:20:03 +0200 |
|---|---|---|
| committer | Peter Korsgaard <peter@korsgaard.com> | 2018-05-06 21:49:09 +0200 |
| commit | eef425146223f220587c32ad880463b1c749660c (patch) | |
| tree | 04598fa9d45577a0ce49537d7f37c496d3ff3e3b | |
| parent | e607881f201337198a0bb2d69c5c8507a1ebfde9 (diff) | |
| download | buildroot-eef425146223f220587c32ad880463b1c749660c.tar.gz buildroot-eef425146223f220587c32ad880463b1c749660c.zip | |
udftool: add missing dependency on readline
udftool/Config.in selects BR2_PACKAGE_READLINE, but udftool does not
depend on it. Readline is not a runtime dependency: one of the udftool
program links against it.
This commit fixes this inconsistency.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
| -rw-r--r-- | package/udftools/udftools.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/udftools/udftools.mk b/package/udftools/udftools.mk index 708fef9ab7..2d3477a51c 100644 --- a/package/udftools/udftools.mk +++ b/package/udftools/udftools.mk @@ -8,5 +8,6 @@ UDFTOOLS_VERSION = 2.0 UDFTOOLS_SITE = https://github.com/pali/udftools/releases/download/$(UDFTOOLS_VERSION) UDFTOOLS_LICENSE = GPL-2.0+ UDFTOOLS_LICENSE_FILES = COPYING +UDFTOOLS_DEPENDENCIES = readline $(eval $(autotools-package)) |

