diff options
author | M Joonas Pihlaja <jpihlaja@cc.helsinki.fi> | 2010-07-14 09:51:27 +0300 |
---|---|---|
committer | M Joonas Pihlaja <jpihlaja@cc.helsinki.fi> | 2010-07-21 23:52:23 +0300 |
commit | 9399b1a5af69cc9890aa7918cd09318ddeefc05d (patch) | |
tree | 4dc2e7f8c9a5757cc80e4494ab70188c3eee5885 /configure.ac | |
parent | 5537e51cd0ffda53cc392a4bafe05070954fc36d (diff) |
Fix thinko in configure.ac's macro to test linking.
Copy-paste carnage. Renames save_{cflags,libs,ldflags} to
save_{CFLAGS,LIBS,LDFLAGS}.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index c97c45dd..98c2783f 100644 --- a/configure.ac +++ b/configure.ac @@ -105,9 +105,9 @@ AC_DEFUN([PIXMAN_LINK_WITH_ENV],[dnl else ifelse([$4], , :, [$4]) fi - CFLAGS="$save_cflags" - LDFLAGS="$save_ldflags" - LIBS="$save_libs" + CFLAGS="$save_CFLAGS" + LDFLAGS="$save_LDFLAGS" + LIBS="$save_LIBS" ]) dnl Find a -Werror for catching warnings. |