Bug 183943

Summary: squrrelmail - slight script problem in a spec file
Product: [Fedora] Fedora Reporter: Michal Jaegermann <michal>
Component: squirrelmailAssignee: Warren Togami <wtogami>
Status: CLOSED RAWHIDE QA Contact:
Severity: low Docs Contact:
Priority: medium    
Version: 4CC: wtogami
Target Milestone: ---   
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2006-06-07 15:58:44 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description Michal Jaegermann 2006-03-03 23:12:19 UTC
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

Comment 1 Warren Togami 2006-06-07 15:58:44 UTC
Thanks, this was included a while ago.