10 lines
173 B
Bash
Executable File
10 lines
173 B
Bash
Executable File
#!/bin/bash
|
|
|
|
bundle_prog=$1
|
|
framework_path=$2
|
|
binary_dir=$3
|
|
|
|
crt_files=$(find $binary_dir -name "crt*.o")
|
|
|
|
$bundle_prog framework add-binaries -f $framework_path $crt_files
|