From 802b23289cc9b43a56e5032c2681eb21d4014784 Mon Sep 17 00:00:00 2001 From: NIIBE Yutaka Date: Tue, 4 Dec 2018 12:32:01 +0900 Subject: [PATCH] build: Remove --with-*-prefix from configure_opts. * autogen.rc (configure_opts): Remove --with-*-prefix. -- It seems that we haven't done cross-build for amd64 for a while, we now use nPth instead of Pth. Signed-off-by: NIIBE Yutaka --- autogen.rc | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/autogen.rc b/autogen.rc index aa565911a..c80dd4801 100644 --- a/autogen.rc +++ b/autogen.rc @@ -17,25 +17,15 @@ esac case "$myhost" in w32) configure_opts=" - --with-gpg-error-prefix=@SYSROOT@ - --with-ksba-prefix=@SYSROOT@ - --with-libgcrypt-prefix=@SYSROOT@ - --with-libassuan-prefix=@SYSROOT@ --with-zlib=@SYSROOT@ --with-regex=@SYSROOT@ - --with-npth-prefix=@SYSROOT@ --disable-g13 " ;; amd64) configure_opts=" - --with-gpg-error-prefix=@SYSROOT@ - --with-ksba-prefix=@SYSROOT@ - --with-libgcrypt-prefix=@SYSROOT@ - --with-libassuan-prefix=@SYSROOT@ --with-zlib=/usr/x86_64-linux-gnu/usr - --with-pth-prefix=/usr/x86_64-linux-gnu/usr " ;; esac