Re: problem in install target of verve plugin

Harold Aling <[email protected]> Tue, 18 Apr 2006 23:27:35 +0200
Newsgroups gmane.comp.desktop.xfce.goodies.devel
Message-ID <[email protected]>
Thank you!

I was having the same problem in my ebuild for Gentoo... Your patch 
fixed it...

-H-

Yves-Alexis Perez wrote:
> 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,
>   
> ------------------------------------------------------------------------
>
> --- 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.
>