summaryrefslogtreecommitdiffstats
path: root/src/poco.mk
diff options
context:
space:
mode:
Diffstat (limited to 'src/poco.mk')
-rw-r--r--src/poco.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/poco.mk b/src/poco.mk
index 46c117f..0904ce0 100644
--- a/src/poco.mk
+++ b/src/poco.mk
@@ -10,7 +10,7 @@ $(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/project/$(PKG)/sources/$(PKG)-$(
$(PKG)_DEPS := gcc
define $(PKG)_UPDATE
- wget -q -O- 'http://pocoproject.org/download/' | \
+ $(WGET) -q -O- 'http://pocoproject.org/download/' | \
$(SED) -n 's,.*poco-\([0-9][^>/]*\)\.tar.*,\1,p' | \
head -1
endef
@@ -20,7 +20,7 @@ define $(PKG)_BUILD
--config=MinGW-CrossEnv \
--static \
--prefix='$(PREFIX)/$(TARGET)'
- $(MAKE) -C '$(1)' -j '$(JOBS)' install
+ $(MAKE) -C '$(1)' -j '$(JOBS)' install CROSSENV=$(TARGET)
'$(TARGET)-g++' \
-W -Wall -Werror -ansi -pedantic \