Author: pebender
Date: Sat Jun 13 16:32:17 2009
New Revision: 4944
Modified:
trunk/gar-minimyth/html/minimyth/document-changelog.txt
trunk/gar-minimyth/script/meta/minimyth/files/source/mm_local/mm_local_helper
trunk/gar-minimyth/script/meta/minimyth/files/source/mm_local/mm_local_install
Log:
- Fixed a bug that caused mm_local_install to fail due to no supporting
redirects.
Modified: trunk/gar-minimyth/html/minimyth/document-changelog.txt
==============================================================================
--- trunk/gar-minimyth/html/minimyth/document-changelog.txt (original)
+++ trunk/gar-minimyth/html/minimyth/document-changelog.txt Sat Jun 13
16:32:17 2009
@@ -33,6 +33,8 @@
- Fixed MM_LIRC.pm so the uinput kernel module is not loaded as a
result
of MM_LIRC_FETCH_LIRCMD_CONF='no'.
- Fixed a bug that caused internal volume control with LIRC to fail.
+ - Fixed a bug that caused mm_local_install to fail due to no supporting
+ redirects.
Fixed build system
- Patched legacy NVIDIA drivers so that they build with kernel 2.6.30.
Modified:
trunk/gar-minimyth/script/meta/minimyth/files/source/mm_local/mm_local_helper
==============================================================================
---
trunk/gar-minimyth/script/meta/minimyth/files/source/mm_local/mm_local_helper
(original)
+++
trunk/gar-minimyth/script/meta/minimyth/files/source/mm_local/mm_local_helper
Sat Jun 13 16:32:17 2009
@@ -189,7 +189,7 @@
message_output 1 "url_http_fetch: command 'curl' not found." || \
return
- curl -o "${LOCAL_FILE}" "${URL}" > /dev/null 2>&1 || \
+ curl -L -o "${LOCAL_FILE}" "${URL}" > /dev/null 2>&1 || \
return
}
@@ -213,7 +213,7 @@
message_output 1 "url_tftp_fetch: command 'curl' not found." || \
return
- curl -o "${LOCAL_FILE}" "${URL}" > /dev/null 2>&1 || \
+ curl -L -o "${LOCAL_FILE}" "${URL}" > /dev/null 2>&1 || \
return
}
Modified:
trunk/gar-minimyth/script/meta/minimyth/files/source/mm_local/mm_local_install
==============================================================================
---
trunk/gar-minimyth/script/meta/minimyth/files/source/mm_local/mm_local_install
(original)
+++
trunk/gar-minimyth/script/meta/minimyth/files/source/mm_local/mm_local_install
Sat Jun 13 16:32:17 2009
@@ -21,7 +21,7 @@
################################################################################
# Default value for parameter 'URL'
-URL_DEFAULT='http://minimyth.org/download/stable/latest/'
+URL_DEFAULT='http://www.minimyth.org/download/stable/latest/'
# Local directory used during the installation.
BASE_DIR='/tmp/mm_local_install'
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"minimyth-commits" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/minimyth-commits?hl=en
-~----------~----~----~----~------~----~------~--~---