Commit 0a468c868910a2308612b6f6b86f6c29ff61ba95
1 parent
0b05835b
Exists in
master
and in
79 other branches
Fixing Makefile
- Handling tarball remove command - Installing only colab_spb_theme directory Signed-off-by: Alexandre Barbosa <alexandreab@live.com> Signed-off-by: Paulo Tada <paulohtfs@gmail.com>
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
Makefile
... | ... | @@ -12,11 +12,11 @@ dist: clean |
12 | 12 | mkdir $(DISTDIR) |
13 | 13 | tar --exclude=.git --exclude=$(DISTDIR) -cf - * | (cd $(DISTDIR) && tar xaf -) |
14 | 14 | tar --exclude=.git -caf $(TARBALL) $(DISTDIR) |
15 | - rm ~/rpmbuild/SOURCES/$(TARBALL) && cp $(TARBALL) ~/rpmbuild/SOURCES/ | |
15 | + rm -f ~/rpmbuild/SOURCES/$(TARBALL) && cp $(TARBALL) ~/rpmbuild/SOURCES/ | |
16 | 16 | clean: |
17 | 17 | $(RM) $(TARBALL) |
18 | 18 | $(RM) -r $(DISTDIR) |
19 | 19 | |
20 | 20 | install: |
21 | 21 | install -d -m 0755 $(DESTDIR)/$(colab_dir)/colab-spb-theme |
22 | - cp -vr . $(DESTDIR)/$(colab_dir)/colab-spb-theme | |
22 | + cp -vr colab_spb_theme $(DESTDIR)/$(colab_dir)/colab-spb-theme | ... | ... |