Skip to content

Commit

Permalink
Shift curl to a runtime package dependency.
Browse files Browse the repository at this point in the history
This is needed for the api-umbrella-geoip-auto-updater script which
calls the curl command.

It was previously defined as a build dependency, but not a runtime
dependency, so it didn't get installed as part of the api-umbrella
packages being installed.

See #290 (comment)
  • Loading branch information
GUI committed Sep 13, 2016
1 parent 21e8088 commit 917ddf6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/package_dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ if [ -f /etc/redhat-release ]; then
core_package_dependencies=(
# General
bash
curl
glibc
libffi
libuuid
Expand Down Expand Up @@ -53,7 +54,6 @@ if [ -f /etc/redhat-release ]; then
automake
bzip2
cmake
curl
gcc
gcc-c++
git
Expand Down Expand Up @@ -94,6 +94,7 @@ elif [ -f /etc/debian_version ]; then
core_package_dependencies=(
# General
bash
curl
libc6
libffi$libffi_version
libncurses5
Expand Down Expand Up @@ -125,7 +126,6 @@ elif [ -f /etc/debian_version ]; then
automake
bzip2
cmake
curl
g++
gcc
git
Expand Down

0 comments on commit 917ddf6

Please sign in to comment.