mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 20:02:14 +03:00
8 lines
134 B
Bash
8 lines
134 B
Bash
|
automakeAddFlags() {
|
||
|
local file="$1"
|
||
|
local target="$2"
|
||
|
local source="$3"
|
||
|
|
||
|
sed "/$target/a\$($source) \\\\" -i $file
|
||
|
}
|