diff options
author | Timo Teräs <timo.teras@iki.fi> | 2016-07-06 11:17:07 +0000 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2016-07-06 11:20:42 +0000 |
commit | 7412650df3959d8a6d7fa555f14d058915a8a238 (patch) | |
tree | 06cd2671bc0e06682dc29ff5263efa5669575836 /main/libfetch/Makefile | |
parent | 4f22eabc253111ab64a1878dc8e4453449de6e03 (diff) | |
download | aports-7412650df3959d8a6d7fa555f14d058915a8a238.tar.bz2 aports-7412650df3959d8a6d7fa555f14d058915a8a238.tar.xz |
main/libfetch: support cross compiling
Diffstat (limited to 'main/libfetch/Makefile')
-rw-r--r-- | main/libfetch/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/main/libfetch/Makefile b/main/libfetch/Makefile index 9bc8c116d5..38ed969c14 100644 --- a/main/libfetch/Makefile +++ b/main/libfetch/Makefile @@ -31,9 +31,9 @@ else CFLAGS += -UDEBUG endif -CC = gcc -LD = gcc -AR = ar +CC = $(CROSS_COMPILE)gcc +LD = $(CROSS_COMPILE)gcc +AR = $(CROSS_COMPILE)ar RANLIB = ranlib INSTALL = install -c -D |