diff options
author | John Ralls <jralls@ceridwen.us> | 2013-04-22 15:48:03 -0700 |
---|---|---|
committer | John Ralls <jralls@ceridwen.us> | 2013-04-22 15:48:35 -0700 |
commit | 655c781b6e0c0a6e755ea136e86fd7a3f11767c5 (patch) | |
tree | a63d9096f909092e32477f63605515b94ed739bd /gtk/native | |
parent | f0f07ad6d8f245dded420f874b6af839b21eb661 (diff) | |
download | gtk+-655c781b6e0c0a6e755ea136e86fd7a3f11767c5.tar.gz |
Fix automake warning about CFLAGS etc. being user variables
Diffstat (limited to 'gtk/native')
-rw-r--r-- | gtk/native/Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/native/Makefile.am b/gtk/native/Makefile.am index 302f0554a9..64899e96c1 100644 --- a/gtk/native/Makefile.am +++ b/gtk/native/Makefile.am @@ -1,8 +1,8 @@ CC = @CC_FOR_BUILD@ -CFLAGS = @CFLAGS_FOR_BUILD@ +AM_CFLAGS = @CFLAGS_FOR_BUILD@ CPP = @CPP_FOR_BUILD@ -CPPFLAGS = @CPPFLAGS_FOR_BUILD@ -LDFLAGS = @LDFLAGS_FOR_BUILD@ +AM_CPPFLAGS = @CPPFLAGS_FOR_BUILD@ +AM_LDFLAGS = @LDFLAGS_FOR_BUILD@ if CROSS_COMPILING if !USE_EXTERNAL_ICON_CACHE |