mirror of
https://github.com/genodelabs/genode.git
synced 2025-01-17 10:19:48 +00:00
cdb1c6f203
Some type size tests in the findutils source code expect the 'time_t' type to be of the same size as the 'long' type, whereas the Genode libc defines it as '__int64_t' for ARM. This patch disables these tests. Fixes #262.
21 lines
587 B
Makefile
21 lines
587 B
Makefile
FINDUTILS = findutils-4.4.2
|
|
FINDUTILS_TGZ = $(FINDUTILS).tar.gz
|
|
FINDUTILS_URL = http://ftp.gnu.org/pub/gnu/findutils/$(FINDUTILS_TGZ)
|
|
|
|
#
|
|
# Interface to top-level prepare Makefile
|
|
#
|
|
PORTS += $(FINDUTILS)
|
|
|
|
prepare:: $(CONTRIB_DIR)/$(FINDUTILS)
|
|
|
|
#
|
|
# Port-specific local rules
|
|
#
|
|
$(DOWNLOAD_DIR)/$(FINDUTILS_TGZ):
|
|
$(VERBOSE)wget -c -P $(DOWNLOAD_DIR) $(FINDUTILS_URL) && touch $@
|
|
|
|
$(CONTRIB_DIR)/$(FINDUTILS): $(DOWNLOAD_DIR)/$(FINDUTILS_TGZ)
|
|
$(VERBOSE)tar xfz $< -C $(CONTRIB_DIR) && touch $@
|
|
$(VERBOSE)patch -d $(CONTRIB_DIR)/$(FINDUTILS) -N -p1 < src/noux-pkg/findutils/build.patch
|