diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2011-01-01 14:10:53 +0000 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2011-01-01 14:10:53 +0000 |
commit | 5e0ac6bf33dbee82d650b9140d336798ebf6af48 (patch) | |
tree | b82e786c7ea15575ccb769663455a99e3dddcc6c | |
parent | 6b857d2bc25e15c316e0247e44b0f360fa3cdc8e (diff) |
fix quoting of NSS_MODULE_OBJS expression to one that is supported by more shells
git-svn-id: http://arthurdejong.org/svn/nss-pam-ldapd/nss-pam-ldapd@1361 ef36b2f9-881f-0410-afb5-c4e39611909c
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 79e67cf..aed2680 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # # Copyright (C) 2006 Luke Howard # Copyright (C) 2006 West Consulting -# Copyright (C) 2006, 2007, 2008, 2009, 2010 Arthur de Jong +# Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 Arthur de Jong # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public @@ -439,7 +439,7 @@ then esac fi AC_MSG_RESULT($with_nss_maps) - NSS_MODULE_OBJS="`echo "$with_nss_maps " | sed 's/,/ /g;s/ */.$(OBJEXT) /g'`" + NSS_MODULE_OBJS="$(echo "$with_nss_maps " | sed 's/,/ /g;s/ */.$(OBJEXT) /g')" AC_SUBST(NSS_MODULE_OBJS) # find out how to link the library |