1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
Description: correct variable assignment to fix FTBFS
Author: Ilya Barygin <randomaction@ubuntu.com>
Index: blocks-of-the-undead-1.0/configure
===================================================================
--- blocks-of-the-undead-1.0.orig/configure 2005-06-24 06:17:13.000000000 +0200
+++ blocks-of-the-undead-1.0/configure 2012-05-01 20:13:38.182068309 +0200
@@ -3860,7 +3860,7 @@
if test "x$no_sdl" = x ; then
echo "$as_me:$LINENO: result: yes" >&5
echo "${ECHO_T}yes" >&6
- CPPFLAGS=$SDL_CFLAGS $CPPFLAGS
+ CPPFLAGS="$SDL_CFLAGS $CPPFLAGS"
LIBS=$SDL_LIBS $LIBS
else
echo "$as_me:$LINENO: result: no" >&5
|