mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 05:37:54 +00:00
8cddd86a4c
issue #1880
13 lines
606 B
PHP
Executable File
13 lines
606 B
PHP
Executable File
BINUTILS_PATCHES_DIR = $(GENODE_DIR)/tool/patches/binutils-$(BINUTILS_VERSION)
|
|
BINUTILS_PATCHES = $(shell cat $(BINUTILS_PATCHES_DIR)/series)
|
|
|
|
$(CONTRIB_DIR)/binutils-$(BINUTILS_VERSION)/configure:: $(CONTRIB_DIR)/binutils-$(BINUTILS_VERSION)
|
|
$(ECHO) "$(BRIGHT_COL)patching binutils build system...$(DEFAULT_COL)"
|
|
$(VERBOSE)for p in $(BINUTILS_PATCHES); do \
|
|
patch -d $(CONTRIB_DIR)/binutils-$(BINUTILS_VERSION) -p1 -i $(BINUTILS_PATCHES_DIR)/$$p; done;
|
|
@#
|
|
@# Re-generate configure scripts
|
|
@#
|
|
$(VERBOSE)cd $(CONTRIB_DIR)/binutils-$(BINUTILS_VERSION)/bfd; $(AUTOCONF)
|
|
$(VERBOSE)touch $@
|