~ubuntu-branches/ubuntu/wily/docky/wily-proposed

« back to all changes in this revision

Viewing changes to m4/shamrock/util.m4

  • Committer: Bazaar Package Importer
  • Author(s): Christopher James Halse Rogers
  • Date: 2010-02-17 15:10:07 UTC
  • Revision ID: james.westby@ubuntu.com-20100217151007-msxpd0lsj300ndde
Tags: upstream-2.0.0
ImportĀ upstreamĀ versionĀ 2.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
AC_DEFUN([SHAMROCK_CONCAT],
 
2
[
 
3
        $1="$$1 $$2"
 
4
])
 
5
 
 
6
AC_DEFUN([SHAMROCK_CONCAT_MODULE],
 
7
[
 
8
        SHAMROCK_CONCAT($1_CFLAGS, $2_CFLAGS)
 
9
        SHAMROCK_CONCAT($1_LIBS, $2_LIBS)
 
10
])
 
11