diff options
author | Sam James <sam@gentoo.org> | 2020-09-16 22:39:24 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2020-09-16 22:40:31 +0000 |
commit | c4922b4a5ad6f52073f42799d7ef993d0cacf286 (patch) | |
tree | 4cd87713ae8dae9239443928d92eb20b9bcf6032 /net-mail/serialmail/files/serialmail-0.75-respect-AR-RANLIB.patch | |
parent | dev-python/ansi2html: add Python 3.9 support, misc. fixes (diff) | |
download | gentoo-c4922b4a5ad6f52073f42799d7ef993d0cacf286.tar.gz gentoo-c4922b4a5ad6f52073f42799d7ef993d0cacf286.tar.bz2 gentoo-c4922b4a5ad6f52073f42799d7ef993d0cacf286.zip |
net-mail/serialmail: respect AR, CC, RANLIB
Closes: https://bugs.gentoo.org/742743
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-mail/serialmail/files/serialmail-0.75-respect-AR-RANLIB.patch')
-rw-r--r-- | net-mail/serialmail/files/serialmail-0.75-respect-AR-RANLIB.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/net-mail/serialmail/files/serialmail-0.75-respect-AR-RANLIB.patch b/net-mail/serialmail/files/serialmail-0.75-respect-AR-RANLIB.patch new file mode 100644 index 000000000000..c04f0d78a28c --- /dev/null +++ b/net-mail/serialmail/files/serialmail-0.75-respect-AR-RANLIB.patch @@ -0,0 +1,22 @@ +diff --git a/Makefile b/Makefile +index 4edccea..7530107 100644 +--- a/Makefile ++++ b/Makefile +@@ -369,7 +369,7 @@ warn-auto.sh systype + ( cat warn-auto.sh; \ + echo 'main="$$1"; shift'; \ + echo 'rm -f "$$main"'; \ +- echo 'ar cr "$$main" $${1+"$$@"}'; \ ++ echo '"$(AR)" cr "$$main" $${1+"$$@"}'; \ + case "`cat systype`" in \ + sunos-5.*) ;; \ + unix_sv*) ;; \ +@@ -378,7 +378,7 @@ warn-auto.sh systype + dgux-*) ;; \ + hp-ux-*) ;; \ + sco*) ;; \ +- *) echo 'ranlib "$$main"' ;; \ ++ *) echo '"$(RANLIB)" "$$main"' ;; \ + esac \ + ) > makelib + chmod 755 makelib |