diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-05-07 04:32:36 +0200 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-05-07 04:32:36 +0200 |
commit | 291b6aa31b7dc11fde0648f1a909838e19875856 (patch) | |
tree | e47432739fc87cbea56fd2a64f5f9f30d699df61 /src | |
parent | 26d130571799e155584918bfbd4ffb8537782713 (diff) | |
download | gtk-vlc-player-291b6aa31b7dc11fde0648f1a909838e19875856.tar.gz |
build system: fixed AM_CFLAGS handling
when using per-target CFLAGS, AM_CFLAGS are ignored
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 6fa4307..f69a513 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -3,7 +3,7 @@ AM_CFLAGS = -Wall bin_PROGRAMS = experiment-player experiment_player_SOURCES = main.c -experiment_player_CFLAGS = +experiment_player_CFLAGS = $(AM_CFLAGS) experiment_player_CPPFLAGS = -DDEFAULT_UI='"@DEFAULT_UI@"' experiment_player_LDFLAGS = experiment_player_LDADD = |