diff options
author | Alexey Neyman <stilor@att.net> | 2017-10-05 00:09:22 -0700 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2018-04-07 12:02:33 -0700 |
commit | d401afbddaae56093cce388e62f7ba4d9d68a327 (patch) | |
tree | 5b1c7fdc13dd2ade2dbe8576045427e072d1f4d1 /kconfig | |
parent | 1ce2eab963a004ba352a5cea800e2765a7c6affd (diff) | |
download | crosstool-ng-d401afbddaae56093cce388e62f7ba4d9d68a327.tar.gz crosstool-ng-d401afbddaae56093cce388e62f7ba4d9d68a327.tar.bz2 crosstool-ng-d401afbddaae56093cce388e62f7ba4d9d68a327.zip |
Get rid of sub{lib,doc}dir
They don't make sense - using same ct-ng won't work with different versions,
so they cannot coexist in the same prefix.
Also localize other configure variables so that their usage is easier to track.
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'kconfig')
-rw-r--r-- | kconfig/Makefile.in | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/kconfig/Makefile.in b/kconfig/Makefile.in index 630ac14e..26a4404f 100644 --- a/kconfig/Makefile.in +++ b/kconfig/Makefile.in @@ -2,6 +2,18 @@ # Hmmm! Cheesy build! # Or: where I can unveil my make-fu... :-] +install = @INSTALL@ +sed = @SED@ +gperf = @GPERF@ +gperf_len_type = @GPERF_LEN_TYPE@ +gettext = @gettext@ +curses_hdr = @ac_ct_curses_hdr@ +CC = @CC@ +CFLAGS = @CFLAGS@ +LDFLAGS = @LDFLAGS@ +LIBS = @LIBS@ +INTL_LIBS = @INTL_LIBS@ + __silent = $(if $(V),,@printf ' %-7s %s\n' '$1' '$(if $2,$2,$(strip $<))' && ) __silent_rm = $(call __silent,RM,$1)rm -f $1 @@ -103,10 +115,10 @@ conf: $(COMMON_OBJ) $(conf_OBJ) install: $(patsubst %,install-%,$(PROGS)) install-kconfig.mk $(patsubst %,install-%,$(PROGS)): install-%: % - $(call __silent,INSTALL,$<)install -m 0755 $< $(DESTDIR)/$< + $(call __silent,INSTALL,$<)$(install) -m 0755 $< $(DESTDIR)/$< install-kconfig.mk: kconfig.mk - $(call __silent,INSTALL,$<)install -m 0644 $< $(DESTDIR)/$< + $(call __silent,INSTALL,$<)$(install) -m 0644 $< $(DESTDIR)/$< #----------------------------------------------------------- # Cleaning up the mess... |