diff options
author | David Lechner <david@lechnology.com> | 2018-04-29 13:29:54 -0500 |
---|---|---|
committer | David Lechner <david@lechnology.com> | 2018-04-29 13:30:42 -0500 |
commit | 7372e7449c06ce25ab08a2352dac2fc68953176f (patch) | |
tree | bdfe7d6b2d16c22a9df47353a9405bff37987435 /debian | |
parent | 90d14443d1ab1d650f7aef98df3d2948ba6dd605 (diff) | |
download | crosstool-ng-7372e7449c06ce25ab08a2352dac2fc68953176f.tar.gz crosstool-ng-7372e7449c06ce25ab08a2352dac2fc68953176f.tar.bz2 crosstool-ng-7372e7449c06ce25ab08a2352dac2fc68953176f.zip |
debian: add curl and wget dependencies
curl and wget are needed as a build dependency so that the auto configuration will see them and set the relevant configuration options. Otherwise, we end up with a ct-ng that can't download anything.
However, curl and wget are not strict runtime dependencies, and we don't need both, so list them as Recommends: curl | wget for the binary package.
Diffstat (limited to 'debian')
-rw-r--r-- | debian/control | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/debian/control b/debian/control index 4c2a95e6..02be6379 100644 --- a/debian/control +++ b/debian/control @@ -3,7 +3,7 @@ Section: devel Priority: optional Maintainer: Multiple Candidates <open@example.com> Build-Depends: debhelper (>= 9), autoconf, automake, autotools-dev, - libncursesw5-dev, libncurses5-dev, bison, flex, + libncursesw5-dev, libncurses5-dev, bison, flex, curl, wget, texinfo, help2man, gawk, git, subversion, bzip2, libtool-bin Standards-Version: 3.9.8 Homepage: http://crosstool-ng.org/ @@ -11,6 +11,7 @@ Homepage: http://crosstool-ng.org/ Package: crosstool-ng Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, build-essential, texinfo +Recommends: curl | wget Description: create your own cross toolchains Crosstool-NG aims at building toolchains. Toolchains are an essential component in a software development project. It will compile, assemble and |