diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2010-09-28 19:35:12 +0000 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2010-09-28 19:35:12 +0000 |
commit | e62367934a1bba4e83113847e33102c05aad9b4e (patch) | |
tree | 67d4d26d1fd6421c30e371c650ae8ed36b977d35 | |
parent | 8762cccbe5758299171d4dd1510b2d38eebd5543 (diff) |
simplify appending OBJEXT sed expression
git-svn-id: http://arthurdejong.org/svn/nss-pam-ldapd/nss-pam-ldapd@1222 ef36b2f9-881f-0410-afb5-c4e39611909c
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index cc07dcc..9e98e2d 100644 --- a/configure.ac +++ b/configure.ac @@ -341,7 +341,7 @@ then with_nss_ldap_maps="aliases,ethers,group,hosts,netgroup,networks,passwd,protocols,rpc,services,shadow" fi AC_MSG_RESULT($with_nss_ldap_maps) - NSS_MODULE_OBJS="`echo "$with_nss_ldap_maps" | sed 's/,/ /g;s/ *\|$/.$(OBJEXT) /g'`" + NSS_MODULE_OBJS="`echo "$with_nss_ldap_maps " | sed 's/,/ /g;s/ */.$(OBJEXT) /g'`" AC_SUBST(NSS_MODULE_OBJS) # restore CFLAGS and LIBS |