~3v1n0/bamf/snap-exec-matching-fix-x

« back to all changes in this revision

Viewing changes to m4/programs.m4

  • Committer: Jason Smith
  • Date: 2012-02-07 03:23:16 UTC
  • mto: This revision was merged to the branch mainline in revision 436.
  • Revision ID: jason.smith@canonical.com-20120207032316-p3se65eob2sd2sti
remove m4 subfolder as it shouldn't have been in VCS anyhow

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
AC_DEFUN([SHAMROCK_FIND_PROGRAM],
2
 
[
3
 
        AC_PATH_PROG($1, $2, $3)
4
 
        AC_SUBST($1)
5
 
])
6
 
 
7
 
AC_DEFUN([SHAMROCK_FIND_PROGRAM_OR_BAIL],
8
 
[
9
 
        SHAMROCK_FIND_PROGRAM($1, $2, no)
10
 
        if test "x$$1" = "xno"; then
11
 
                AC_MSG_ERROR([You need to install '$2'])
12
 
        fi
13
 
])
14
 
 
15