diff options
author | joerg <joerg@pkgsrc.org> | 2007-09-11 14:13:51 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2007-09-11 14:13:51 +0000 |
commit | 93eed456639e1df81eb3b492de9308fea696282c (patch) | |
tree | 8b445004828f6eae454cb066332573139bf01597 /devel | |
parent | 1a0189829d5cbb1c014224ad4f516848db53b853 (diff) | |
download | pkgsrc-93eed456639e1df81eb3b492de9308fea696282c.tar.gz |
Remove stray : that could break a substitutions as hinted by Sean
Boudreau.
Diffstat (limited to 'devel')
-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) |