Changes between Initial Version and Version 1 of Ticket #52954
- Timestamp:
- Nov 25, 2016, 4:19:23 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #52954
-
Property
Status
changed from
new
toassigned
- Property Keywords haspatch added
- Property Cc ryandesign added
- Property Owner changed from macports-tickets@… to kirk@…
-
Property
Status
changed from
-
Ticket #52954 – Description
initial v1 1 1 This is current code in line 2 3 {{{ 2 4 gnused=$(which sed) 3 5 [[ "${platform}" == "Darwin" ]] && gnused=gsed 4 6 [[ -f "$gnused" ]] || { ERROR....} 5 7 }}} 6 8 7 9 should be changed to 10 11 {{{ 8 12 which $gnused || error 13 }}}