diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2018-06-24 15:59:16 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2018-06-24 15:59:16 (EDT) |
commit | 1149169202d9649eb8cc6cd84a9fd458e1d32d39 (patch) | |
tree | 941e064d2aabe48fb4f4e188497adaa362b93de8 /configure.ac | |
parent | 2221d627f496d0d60bcb05b8444eae0c297ab380 (diff) |
Revert "configure.ac: Add hints about missing [s]fdisk and mke2fs"
This reverts commit 2221d627f496d0d60bcb05b8444eae0c297ab380.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index 05a37f7..e212c05 100644 --- a/configure.ac +++ b/configure.ac @@ -194,8 +194,7 @@ AC_ARG_WITH( ) AC_SUBST([HAVE_FDISK]) if ! ${HAVE_SFDISK} && ! ${HAVE_FDISK}; then - AC_MSG_ERROR([sfdisk or fdisk is required $(: \ - )(hint: these may be in /sbin or /usr/sbin)]) + AC_MSG_ERROR([sfdisk or fdisk is required]) fi AC_ARG_WITH( [mke2fs], @@ -218,8 +217,7 @@ AC_ARG_WITH( [ AC_PATH_PROG([MKE2FS], [mke2fs]) if test -z "${MKE2FS}"; then - AC_MSG_ERROR([mke2fs not found $(: \ - )(hint: this may be in /sbin or /usr/sbin)]) + AC_MSG_ERROR([mke2fs not found]) fi ] ) |