diff mbox

[1/2] lftp: remove unrequired config options

Message ID 1470676311-12729-1-git-send-email-rahul.bedarkar@imgtec.com
State Accepted
Headers show

Commit Message

Rahul Bedarkar Aug. 8, 2016, 5:11 p.m. UTC
When installation prefix is specified in "--with-readline" config
option, lftp's build systems figures out include dir and linker flags.
So don't specify --with-readline-{inc,libs} options which are anyways
get ignored by build system.

Signed-off-by: Rahul Bedarkar <rahul.bedarkar@imgtec.com>
---
 package/lftp/lftp.mk | 2 --
 1 file changed, 2 deletions(-)

Comments

Thomas Petazzoni Aug. 10, 2016, 12:58 p.m. UTC | #1
Hello,

On Mon, 8 Aug 2016 22:41:50 +0530, Rahul Bedarkar wrote:
> When installation prefix is specified in "--with-readline" config
> option, lftp's build systems figures out include dir and linker flags.
> So don't specify --with-readline-{inc,libs} options which are anyways
> get ignored by build system.
> 
> Signed-off-by: Rahul Bedarkar <rahul.bedarkar@imgtec.com>
> ---
>  package/lftp/lftp.mk | 2 --
>  1 file changed, 2 deletions(-)

Both patches applied to master, thanks!

Thomas
diff mbox

Patch

diff --git a/package/lftp/lftp.mk b/package/lftp/lftp.mk
index eab7731..b46b802 100644
--- a/package/lftp/lftp.mk
+++ b/package/lftp/lftp.mk
@@ -16,8 +16,6 @@  LFTP_DEPENDENCIES = readline zlib host-pkgconf
 # Help lftp finding readline and zlib
 LFTP_CONF_OPTS = \
 	--with-readline=$(STAGING_DIR)/usr \
-	--with-readline-inc=$(STAGING_DIR)/usr/include/readline \
-	--with-readline-lib=$(STAGING_DIR)/usr/lib \
 	--with-zlib=$(STAGING_DIR)/usr
 
 ifneq ($(BR2_STATIC_LIBS),y)