forked from rpms/openssl
16459847f1
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/openssl#7ae2c9cd854539d3f09c5da76a55f6ff55ce55a8
16 lines
160 B
Bash
Executable File
16 lines
160 B
Bash
Executable File
#!/bin/sh
|
|
# Fixes patch from upstream tracker view
|
|
gawk '
|
|
BEGIN {
|
|
dir=""
|
|
}
|
|
/^Index: openssl\// {
|
|
dir = $2
|
|
}
|
|
/^(---|\+\+\+)/ {
|
|
$2 = dir
|
|
}
|
|
{
|
|
print
|
|
}'
|