problem in install target of verve plugin

Yves-Alexis Perez <[email protected]> Tue, 18 Apr 2006 23:08:50 +0200
Newsgroups gmane.comp.desktop.xfce.goodies.devel
Message-ID <1145394530.22760.1.camel@hidalgo>
During debian verve plugin packaging I found a little bug in the
Makefile.in file which causes problems for packaging (installing in the
package).

The patch attached fixes the problem.

Regards,
-- 
Yves-Alexis Perez
01_fix-install-target.patch (text/x-patch, 423 B)
--- scripts/Makefile.in.old	2006-04-03 21:52:01.000000000 +0200
+++ scripts/Makefile.in	2006-04-18 23:03:36.000000000 +0200
@@ -385,7 +385,8 @@
 
 
 install:
-	$(INSTALL) verve-focus $(bindir)
+	test -z "$(bindir)" || $(mkdir_p) "$(DESTDIR)$(bindir)"
+	$(INSTALL) verve-focus $(DESTDIR)$(bindir)
 
 # vi:set ts=8 sw=8 noet ai nocindent syntax=automake:
 # Tell versions [3.59,3.63) of GNU make to not export all variables.