Description of problem: In a spec file the following script is used to fix references in a documentation index file: perl -pi -e "s/\.\.//g" doc/index.html This changes strings like "../AUTHORS" to "/AUTHORS" and this is hardly what is desired. It looks that the script in question should really look like that: perl -pi -e "s{\.\./}{}g" doc/index.html to replace "../AUTHORS" with "AUTHORS" and similar. Version-Release number of selected component (if applicable): squirrelmail-1.4.6-1.fc4
Thanks, this was included a while ago.