16 lines
160 B
Plaintext
16 lines
160 B
Plaintext
|
#!/bin/sh
|
||
|
# Fixes patch from upstream tracker view
|
||
|
gawk '
|
||
|
BEGIN {
|
||
|
dir=""
|
||
|
}
|
||
|
/^Index: openssl\// {
|
||
|
dir = $2
|
||
|
}
|
||
|
/^(---|\+\+\+)/ {
|
||
|
$2 = dir
|
||
|
}
|
||
|
{
|
||
|
print
|
||
|
}'
|