diff options
author | Zdenek Kabelac <zkabelac@redhat.com> | 2013-11-25 09:09:20 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2013-11-25 09:25:56 +0000 |
commit | 2275ef581ee1a1c45a45df40f952779f62fb53ed (patch) | |
tree | 9cc452947b745cb77a32945cb92563b83bb592cb /tools | |
parent | 12e974c7bc8c85dbccd3d9ef91c1315e85bbeb6c (diff) |
Makefile convert @var@ to $(var)
Avoid using @var@ since this could not be easily overwritten through
'make var=xxx' option which is normally available.
For Makefile.am users should avoid using @var@.
Signed-off-by: Zdenek Kabelac <zkabelac@redhat.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/Makefile.am b/tools/Makefile.am index de7e9b45..d294e2ad 100644 --- a/tools/Makefile.am +++ b/tools/Makefile.am @@ -20,7 +20,7 @@ AM_CFLAGS = \ @CWARNFLAGS@ \ - @TOOL_CFLAGS@ \ + $(TOOL_CFLAGS) \ @NOWARNFLAGS@ \ $(NULL) @@ -33,7 +33,7 @@ intel_virtual_output_SOURCES = \ virtual.c \ $(NULL) -intel_virtual_output_LDADD = @TOOL_LIBS@ +intel_virtual_output_LDADD = $(TOOL_LIBS) EXTRA_DIST = intel-virtual-output.man CLEANFILES = $(driverman_DATA) |