1
1

- fix broken build target, we have to use the files in the RPM build

environment.

This commit was SVN r16561.
Этот коммит содержится в:
Sven Stork 2007-10-24 17:48:30 +00:00
родитель 682f110658
Коммит 29b2f8ce97

4
contrib/dist/linux/ompi-spec-generator.py поставляемый
Просмотреть файл

@ -306,7 +306,9 @@ Requires: %(requires)s
rm -f %(name)s.files
rm -f %(name)s.files.tmp
for i in %(installed_files)s; do
echo $i >> %(name)s.files.tmp
for file in $RPM_BUILD_ROOT/$i ; do
echo $file | sed "s#$RPM_BUILD_ROOT/##g" >> %(name)s.files.tmp
done
done
sort -u %(name)s.files.tmp > %(name)s.files
rm -f %(name)s.files.tmp