diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-03-10 20:51:30 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-03-10 20:51:30 +0100 |
commit | b08e636c23878807a6c83e9c4a84c995084ce51b (patch) | |
tree | 3b538c28c97518c5ead4576557212f8896c4a69a /Makefile | |
parent | bump version (diff) | |
download | blueshift-b08e636c23878807a6c83e9c4a84c995084ce51b.tar.gz blueshift-b08e636c23878807a6c83e9c4a84c995084ce51b.tar.bz2 blueshift-b08e636c23878807a6c83e9c4a84c995084ce51b.tar.xz |
licenses partially under AGPL3 and partially under GPL3
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -223,7 +223,7 @@ install-command-share: $(foreach D,$(DATAFILES),res/$(D)) .PHONY: install-license install-license: install -dm755 -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)" - install -m644 COPYING LICENSE -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)" + install -m644 COPYING LICENSE.agpl3 LICENSE.gpl3 -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)" # Install documentation @@ -285,7 +285,8 @@ uninstall: -rm -- $(foreach E,$(EXECLIBS),"$(DESTDIR)$(LIBEXECDIR)/$(E)") -rmdir -- "$(DESTDIR)$(LIBEXECDIR)" -rm -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)/COPYING" - -rm -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)/LICENSE" + -rm -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)/LICENSE.agpl3" + -rm -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)/LICENSE.gpl3" -rmdir -- "$(DESTDIR)$(LICENSEDIR)/$(PKGNAME)" -rm -- $(foreach F,$(DATAFILES),"$(DESTDIR)$(DATADIR)/$(PKGNAME)/$(F)") -rmdir -- "$(DESTDIR)$(DATADIR)/$(PKGNAME)" |