Skip to content

Commit 098cf29

Browse files
authored
Merge pull request rpm-software-management#96 from dnagl/95-fix-makefile
Fix rpm-software-management#95
2 parents 594b49a + 9282d18 commit 098cf29

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ all: subdirs
1919

2020
clean:
2121
rm -f *.pyc *.pyo *~ *.bak
22-
rm -f $(BUILDDIR)/{SOURCES,SRPMS,RPMS}/*
22+
rm -f $(BUILDDIR)/SOURCES/* $(BUILDDIR)/SRPMS/* $(BUILDDIR)/RPMS/*
2323
mock -r $(MOCK_CONF) --clean
2424
for d in $(SUBDIRS); do make -C $$d clean ; done
2525
cd test; rm -f *.pyc *.pyo *~ *.bak
@@ -131,7 +131,7 @@ _archive:
131131
### RPM packaging ###
132132

133133
$(BUILDDIR):
134-
@mkdir -p $@/{SOURCES,SRPMS,RPMS}
134+
@mkdir -p $@/SOURCES $@/SRPMS $@/RPMS
135135

136136
srpm: archive $(BUILDDIR)
137137
@cp $(PKGNAME)-$(VERSION).tar.gz $(BUILDDIR)/SOURCES/

0 commit comments

Comments
 (0)