Changeset bad82027 in rtems


Ignore:
Timestamp:
10/22/15 19:53:36 (8 years ago)
Author:
Ben Gras <beng@…>
Branches:
4.11
Children:
ad659ff8
Parents:
ec6f20fc
git-author:
Ben Gras <beng@…> (10/22/15 19:53:36)
git-committer:
Ben Gras <ben@…> (10/22/15 22:08:53)
Message:

Fail gracefully if pax is not found

The $(PAX) variable is used unconditionally so it shouldn't be
left empty if not found at configure time. Fixes #2437.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • testsuites/libtests/configure.ac

    rec6f20fc rbad82027  
    3131
    3232AC_PROG_LN_S
    33 AC_PATH_PROG([PAX],[pax])
     33AC_PATH_PROG([PAX],[pax],no)
     34
     35AS_IF([test "x$PAX" = "xno"],[
     36        AC_MSG_ERROR([pax is missing.])
     37])
    3438
    3539AC_CHECK_HEADERS([complex.h])
Note: See TracChangeset for help on using the changeset viewer.