Switch to dev PCRE in Ubuntu/Debian packages
For consistency with CentOS and SUSE, and because packages that link against libR like rJava need PCRE dev headers to install from source.
This commit is contained in:
parent
048f2ca063
commit
650d3650ce
1 changed files with 10 additions and 10 deletions
|
|
@ -5,9 +5,9 @@ if [[ ! -d /tmp/output/debian-10 ]]; then
|
|||
fi
|
||||
|
||||
# R 3.x requires PCRE1
|
||||
pcre_lib='libpcre2-8-0'
|
||||
pcre_lib='libpcre2-dev'
|
||||
if [[ "${R_VERSION}" =~ ^3 ]]; then
|
||||
pcre_lib='libpcre3'
|
||||
pcre_lib='libpcre3-dev'
|
||||
fi
|
||||
|
||||
fpm \
|
||||
|
|
|
|||
Loading…
Reference in a new issue