diff options
author | Werner Koch <[email protected]> | 2024-07-08 08:58:06 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2024-07-08 08:59:06 +0000 |
commit | c333e9dad66ed25a906fba8146a6fc25b0e83ff8 (patch) | |
tree | dca6f356f8a262aad4ffbc11dfe71d7a7274f222 /build-aux | |
parent | Post release updates (diff) | |
download | gnupg-c333e9dad66ed25a906fba8146a6fc25b0e83ff8.tar.gz gnupg-c333e9dad66ed25a906fba8146a6fc25b0e83ff8.zip |
speedo: Set PREFIX for bzip2 build also for Unix.
--
bzip2 is a make-only package and thus we can't set the prefix with
configure. We need to set PREFIX here so that the install target:
if ( test ! -d $(PREFIX)/lib ) ; then mkdir -p $(PREFIX)/lib;fi
[...]
does not try to install to the default PREFIX /usr/local/lib.
Diffstat (limited to 'build-aux')
-rw-r--r-- | build-aux/speedo.mk | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/build-aux/speedo.mk b/build-aux/speedo.mk index c4edb3547..942ffa73f 100644 --- a/build-aux/speedo.mk +++ b/build-aux/speedo.mk @@ -593,6 +593,9 @@ speedo_pkg_bzip2_make_args = \ speedo_pkg_bzip2_make_args_inst = \ PREFIX=$(idir) CC="$(host)-gcc" AR="$(host)-ar" RANLIB="$(host)-ranlib" +else +speedo_pkg_bzip2_make_args_inst = \ + PREFIX=$(idir) endif speedo_pkg_w64_libiconv_configure = \ |