Make DSO_EXPORTS_CMD regexp more POSIX compliant
authorZach Loafman <zachary.loafman@isilon.com>
Wed, 9 Jul 2008 07:05:50 +0000 (00:05 -0700)
committerVolker Lendecke <vl@samba.org>
Tue, 22 Jul 2008 13:00:48 +0000 (15:00 +0200)
commitabaa69b32b212f151832b5e5c9325bfeea7d0bb2
tree277e65f2387f5681cd603839dd26aeb61b77605e
parent863a6aa07e543e30f2075a597129f6c39222beef
Make DSO_EXPORTS_CMD regexp more POSIX compliant

The FreeBSD sed command doesn't understand \? without passing -E to turn
on extended regexps. This patch changes the DSO_EXPORTS_CMD regexp to a
POSIX compliant RE by switching the \+ to a \{1,\} bound and the \? to a
\{0,1\} bound.
(This used to be commit 0acc888ca91a7401c5e54388c58272e263f73069)
source3/Makefile.in