changeset 161:bcb55ca77a2c

bugfix in the build rules of package 'sdl'
author Volker Grabsch <vog@notjusthosting.com>
date Sun, 09 Nov 2008 01:56:12 +0100
parents c910739ef7ed
children 4377bbba7f64
files src/sdl.mk
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/sdl.mk	Sun Nov 09 01:18:54 2008 +0100
+++ b/src/sdl.mk	Sun Nov 09 01:56:12 2008 +0100
@@ -1,5 +1,5 @@
 # SDL
-# http://www.libsdl.org/
+# http://libsdl.org/
 
 PKG            := sdl
 $(PKG)_VERSION := 1.2.11
@@ -9,8 +9,8 @@
 $(PKG)_DEPS    := gcc libiconv
 
 define $(PKG)_UPDATE
-    wget -q -O- 'http://www.libsdl.org/release/changes.html' | \
-    $(SED) -n 's,.*sdl \([0-9][^>]*\) Release Notes.*,\1,p' | \
+    wget -q -O- 'http://libsdl.org/release/changes.html' | \
+    $(SED) -n 's,.*SDL \([0-9][^>]*\) Release Notes.*,\1,p' | \
     head -1
 endef