#13062 closed defect (fixed)
libsdl fetch error for darwin 7 due to missing )
Reported by: | andy.rowland@… | Owned by: | ryandesign (Ryan Carsten Schmidt) |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | ports | Version: | 1.5.2 |
Keywords: | Cc: | andy.rowland@…, nox@…, ryandesign (Ryan Carsten Schmidt) | |
Port: |
Description
from libsdl Portfile:
platform darwin 7 {
pre-fetch {
set qt_header [open /System/Library/Frameworks/QuickTime.framework/Heade
rs/QuickTime.h r]
while {[gets $qt_header line] != -1} {
if {[regexp {Version:} $line]} {
regexp {(\d+\.\d+(?:\.(\d+))?$} $line qt_ver
add 3rd ) to bottom line to fix
Change History (3)
comment:1 Changed 17 years ago by ryandesign (Ryan Carsten Schmidt)
Cc: | andy.rowland@… nox@… ryandesign@… added |
---|---|
Milestone: | → Port Bugs |
Owner: | changed from macports-dev@… to ryandesign@… |
comment:2 Changed 17 years ago by ryandesign (Ryan Carsten Schmidt)
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
Rather than adding a closing parenthesis, I removed an opening parenthesis in r30549. Thanks for reporting this.