From: Mike Frysinger Date: Mon, 21 Mar 2005 02:54:35 +0000 (-0000) Subject: Bug #160, pgrayson writes: The readline package currently has a Makefile.in. This... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f7408e9bd41b9f358566dfead1a730b1aeaa00d9;p=buildroot.git Bug #160, pgrayson writes: The readline package currently has a Makefile.in. This patch removes the depricated Makefile.in and adds the relevant modifications to TARGETS to readline.mk. --- diff --git a/package/readline/Makefile.in b/package/readline/Makefile.in deleted file mode 100644 index 63b907da0c..0000000000 --- a/package/readline/Makefile.in +++ /dev/null @@ -1,6 +0,0 @@ -ifeq ($(strip $(BR2_READLINE)),y) -TARGETS+=readline -endif -ifeq ($(strip $(BR2_PACKAGE_READLINE_TARGET)),y) -TARGETS+=readline_target -endif diff --git a/package/readline/readline.mk b/package/readline/readline.mk index df38572dee..65aedc3f7a 100644 --- a/package/readline/readline.mk +++ b/package/readline/readline.mk @@ -80,3 +80,9 @@ readline-dirclean: readline-source: $(DL_DIR)/$(READLINE_SOURCE) $(READLINE_DIR1)/.unpacked +ifeq ($(strip $(BR2_READLINE)),y) +TARGETS+=readline +endif +ifeq ($(strip $(BR2_PACKAGE_READLINE_TARGET)),y) +TARGETS+=readline_target +endif