diff options
author | Thomas Guyot-Sionnest <dermoth@aei.ca> | 2009-09-25 06:45:57 -0400 |
---|---|---|
committer | Thomas Guyot-Sionnest <dermoth@aei.ca> | 2009-09-25 06:45:57 -0400 |
commit | 623047109ab5a069cd34cab6b8c4c343fc70b48d (patch) | |
tree | 2627e14070860c153fbbb78220a9b62e13e7d178 | |
parent | 9b550c5a96c3fb1f312e43c1d29d0e81846c8943 (diff) | |
download | monitoring-plugins-623047109ab5a069cd34cab6b8c4c343fc70b48d.tar.gz |
Using $srcdir is the proper way to go
-rw-r--r-- | configure.in | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/configure.in b/configure.in index 5cc693c2..c047b12d 100644 --- a/configure.in +++ b/configure.in @@ -99,10 +99,10 @@ AC_SUBST(REV_DATESTAMP) AC_SUBST(REV_TIMESTAMP) dnl Check if version file is present -AM_CONDITIONAL([RELEASE_PRESENT], [test -f release]) +AM_CONDITIONAL([RELEASE_PRESENT], [test -f $srcdir/release]) # Also read in the version from it -if test -f release; then +if test -f $srcdir/release; then NP_RELEASE="$(<release)" else NP_RELEASE="$PACKAGE_VERSION" @@ -1543,9 +1543,7 @@ if test -n "$PATH_TO_APTGET" ; then fi -if test -f plugins/check_nt.c ; then - EXTRAS="$EXTRAS check_nt" -elif test -f ../plugins/check_nt.c ; then +if test -f $srcdir/plugins/check_nt.c ; then EXTRAS="$EXTRAS check_nt" fi |