summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-03-17 21:31:34 +0100
committerMattias Andrée <maandree@operamail.com>2014-03-17 21:31:34 +0100
commite184fe1a3cafa48b007115dd1382314f5ba8d394 (patch)
tree297684b8ce8cab0703d222007243baa6a292f945
parentupdate todo (diff)
downloadblueshift-e184fe1a3cafa48b007115dd1382314f5ba8d394.tar.gz
blueshift-e184fe1a3cafa48b007115dd1382314f5ba8d394.tar.bz2
blueshift-e184fe1a3cafa48b007115dd1382314f5ba8d394.tar.xz
fix installation of licenses
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 64c1873..76785b7 100644
--- a/Makefile
+++ b/Makefile
@@ -232,7 +232,7 @@ install-command-share: $(foreach D,$(DATAFILES),res/$(D))
.PHONY: install-license
install-license:
install -dm755 -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)"
- install -m644 COPYING LICENSE.agpl3 LICENSE.gpl3 -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)"
+ install -m644 COPYING LICENSE.agpl3 LICENSE.gpl3 LICENSE.fdl1.3 -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)"
# Install documentation
@@ -296,6 +296,7 @@ uninstall:
-rm -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)/COPYING"
-rm -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)/LICENSE.agpl3"
-rm -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)/LICENSE.gpl3"
+ -rm -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)/LICENSE.fdl1.3"
-rmdir -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)"
-rm -- $(foreach F,$(DATAFILES),"$(DESTDIR)$(DATADIR)/$(PKGNAME)/$(F)")
-rmdir -- "$(DESTDIR)$(DATADIR)/$(PKGNAME)"