﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc	uname	nginx_version
2230	pkg-oss scripts break if 'so' included in path	https://stackoverflow.com/users/93534/notpeter		"The nginx pkg-oss repo uses sed to help rename .so to -debug.so in a couple places.  For example
{{{
       for so in `find objs/ -maxdepth 1 -type f -name ""*.so""`; do \
               debugso=`echo ${so} | sed -e ""s|.so|-debug.so|""` ; \
               mv ${so} ${debugso} ; \
        done
}}}

Since this sed regex is unarchored it sadly breaks if your path or module name includes 'so' (e.g. ngx_something, /home/alison, /home/me/source/pkg-oss/, etc). 


Proposed patch attached."	defect	closed	minor		nginx-package		fixed				1.20.1
