Chris Waters <[EMAIL PROTECTED]> writes:

>   CFLAGS="$CFLAGS -I${x_includes}"
>   LIBS="$LIBS -L${x_libraries} -lX11"

x_includes and x_libraries now expand to the empty string, biting
anything that assumed otherwise.  Accounting for that isn't too hard,
though:

  CFLAGS="$CFLAGS ${x_includes:+-I$x_includes}"
  LIBS="$LIBS ${x_libraries:+-L$x_libraries} -lX11"

-- 
Aaron M. Ucko, KB1CJC (amu at alum.mit.edu, ucko at debian.org)
Finger [EMAIL PROTECTED] (NOT a valid e-mail address) for more info.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to