Skip to content

Commit

Permalink
fix makefile goof
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeremy Crafts committed Jul 6, 2016
1 parent df92b8a commit f268cf6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ all: rpm

.PHONY: tarball
tarball: $(TARBALL)
$(TARBALL): Makefile
$(TARBALL): Makefile $(TAR_PORTABLE)
$(PY_SDIST)

.PHONY: tar_portable
Expand All @@ -27,7 +27,7 @@ $(TAR_PORTABLE): Makefile

.PHONY: srpm rpm
srpm: $(SRPM)
$(SRPM): $(TAR_PORTABLE) $(TARBALL) $(SPEC_FILE_IN)
$(SRPM): $(TARBALL) $(SPEC_FILE_IN)
mkdir -p $(RPMTOP)/{RPMS,SPECS,SRPMS,SOURCES,BUILD,BUILDROOT}
rpmbuild -ts --define="_topdir $(RPMTOP)" --define="_sourcedir dist" $(TARBALL)

Expand Down

0 comments on commit f268cf6

Please sign in to comment.