diff options
author | Don Kjer <don@lindenlab.com> | 2012-07-06 01:53:34 +0000 |
---|---|---|
committer | Don Kjer <don@lindenlab.com> | 2012-07-06 01:53:34 +0000 |
commit | a6ecafceff18497deba2e0d308f97b044027f7f0 (patch) | |
tree | 721e80c32698d8bccda9b8c98a3c814f951e9ea3 /debian | |
parent | aee13892c870473a3d38d2b7524871e0024a92f2 (diff) |
Change install directory to include viewer version
Diffstat (limited to 'debian')
-rwxr-xr-x | debian/rules | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/debian/rules b/debian/rules index eedeeef879..e4106ff75c 100755 --- a/debian/rules +++ b/debian/rules @@ -11,7 +11,9 @@ SRCDIR=build-linux-i686/newview/packaged DESTDIR=$(CURDIR)/debian/secondlife-viewer -INSTALLDIR=opt/linden/viewer +BASEDIR=opt/linden/viewer +VIEWER_VERSION:=$(shell dpkg-parsechangelog | grep ^Version | sed 's/^Version: //') +INSTALLDIR:=$(BASEDIR)/SecondLife-i686-$(VIEWER_VERSION) configure: configure-stamp configure-stamp: @@ -59,6 +61,7 @@ install: build install -v -m $$PERM -o root -g root "$(SRCDIR)/$$file" "$(DESTDIR)/$(INSTALLDIR)/$$file"; \ done dh_link /$(INSTALLDIR)/secondlife /usr/bin/secondlife + dh_link $(BASEDIR)/SecondLife-i686-$(VIEWER_VERSION) $(BASEDIR)/SecondLife # Build architecture-independent files here. |