diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2009-02-20 15:13:50 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2009-02-20 15:13:50 +0000 |
commit | 01ea62911ec1de12f8c865ec6467141c3b9e72b1 (patch) | |
tree | d39e9c4419ba18e0ecef9ae65f321528803446e2 /package/php/php.mk | |
parent | 24981139f6891b8249a5f43d01760c60bca508cb (diff) |
php: don't use DOWNLOAD macro
php.net only offers downloads though a strange php script with the file name
embedded in the *MIDDLE* of the URL, which isn't compatible with the DOWNLOAD
macro. Fix it by reverting php.mk hunk of r24689 to go back to $(WGET).
This ofcourse means that the primary site / fallback mirror stuff isn't used.
Diffstat (limited to 'package/php/php.mk')
-rw-r--r-- | package/php/php.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/php/php.mk b/package/php/php.mk index 86372ed72..836fc2a4d 100644 --- a/package/php/php.mk +++ b/package/php/php.mk @@ -126,7 +126,7 @@ endif endif $(DL_DIR)/$(PHP_SOURCE): - $(call DOWNLOAD,$(PHP_SITE)) + $(WGET) -P $(DL_DIR) $(PHP_SITE) php-source: $(DL_DIR)/$(PHP_SOURCE) |