diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2009-09-15 17:37:28 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2009-09-15 17:37:28 +0000 |
commit | 284abb4f5dd045a0f060bd5fe2606af419bda5b8 (patch) | |
tree | 51973834648c12cf290b04a6fa4954ceec406ac5 /packages/linux_make | |
parent | c426cebaf2b78ad33e159b0df256139fd83a876b (diff) |
a couple more DESTDIR fixes
svn path=/trunk/; revision=12349
Diffstat (limited to 'packages/linux_make')
-rwxr-xr-x | packages/linux_make/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/linux_make/Makefile b/packages/linux_make/Makefile index 1f2aed21..96789a2b 100755 --- a/packages/linux_make/Makefile +++ b/packages/linux_make/Makefile @@ -115,8 +115,8 @@ deb: $(bindir) install -d $(DESTDIR)/usr/share/emacs/site-lisp/ install -p $(scripts_src)/pd-mode.el $(DESTDIR)/usr/share/emacs/site-lisp/ # Pd-related scripts - install -p $(scripts_src)/pd-diff $(bindir) - install -p $(scripts_src)/config-switcher.sh $(bindir) + install -p $(scripts_src)/pd-diff $(DESTDIR)$(bindir) + install -p $(scripts_src)/config-switcher.sh $(DESTDIR)$(bindir) # debian packaging test -d $(DESTDIR)/DEBIAN || mkdir -p $(DESTDIR)/DEBIAN cp $(packages_src)/linux_make/debian/control $(DESTDIR)/DEBIAN |