diff options
-rwxr-xr-x | devel/bmake/files/configure | 2 | ||||
-rw-r--r-- | devel/bmake/files/configure.in | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/devel/bmake/files/configure b/devel/bmake/files/configure index 242d64ba0ea..3f1a5e29158 100755 --- a/devel/bmake/files/configure +++ b/devel/bmake/files/configure @@ -1736,7 +1736,7 @@ fi cat >>confdefs.h <<_ACEOF -#define DEFSHELL ${DEFSHELL:} +#define DEFSHELL ${DEFSHELL} _ACEOF diff --git a/devel/bmake/files/configure.in b/devel/bmake/files/configure.in index 4ab53f4ca72..cb0c75a8ea7 100644 --- a/devel/bmake/files/configure.in +++ b/devel/bmake/files/configure.in @@ -1,6 +1,6 @@ dnl dnl RCSid: -dnl $Id: configure.in,v 1.3 2007/09/06 19:23:25 joerg Exp $ +dnl $Id: configure.in,v 1.4 2007/09/11 14:13:52 joerg Exp $ dnl dnl Process this file with autoconf to produce a configure script dnl @@ -28,7 +28,7 @@ no) ;; esac ;; esac]) -AC_DEFINE_UNQUOTED(DEFSHELL, ${DEFSHELL:}, Shell spec to use by default) +AC_DEFINE_UNQUOTED(DEFSHELL, ${DEFSHELL}, Shell spec to use by default) AC_SUBST(DEFAULT_CSH) AC_SUBST(DEFAULT_KSH) AC_SUBST(DEFAULT_SH) |