18 lines
504 B
Bash
18 lines
504 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -ex
|
||
|
|
||
|
lib_dir=brp-llvm-compile-lto-elf-test-lib
|
||
|
lib_spec=$lib_dir/brp-llvm-compile-lto-elf-test-lib.spec
|
||
|
|
||
|
dnf -y build-dep $lib_spec
|
||
|
rpmbuild --define "_sourcedir ." --define "_builddir ./$lib_dir" --define "_rpmdir ." -bb $lib_spec
|
||
|
|
||
|
dnf -y install ./`rpm --eval '%{_arch}'`/*.rpm
|
||
|
|
||
|
test_dir=brp-llvm-compile-lto-elf-test
|
||
|
test_spec=$test_dir/brp-llvm-compile-lto-elf-test.spec
|
||
|
|
||
|
dnf -y build-dep $test_spec
|
||
|
rpmbuild --define "_sourcedir ." --define "_builddir ./$test_dir" -bi $test_spec
|