blob: 3971a179a99eb623bea524b47e2089ba8acf533f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
%define foobar /etc/foo \
/etc/bar
Summary: x
Name: multi-linux-macro
Version: 1
Release: 1
License: x
Group: x
Url: x
BuildRoot: %{_tmppath}/%{name}
%install
rm -rf $RPM_BUILD_ROOT
install -d $RPM_BUILD_ROOT/etc
echo foo > $RPM_BUILD_ROOT/etc/foo
echo bar > $RPM_BUILD_ROOT/etc/bar
%clean
rm -rf $RPM_BUILD_ROOT
%description
x
%files
%defattr(-,root,root)
%foobar
# if %foobar is the last line it fails (#27417)
|