[SCM] stk packaging branch, master, updated. debian/4.4.2-3-2-gf3e40b8
Reinhard Tartler
siretart at tauware.de
Fri Apr 9 06:30:05 UTC 2010
On Fri, Apr 09, 2010 at 03:16:09 (CEST), quadrispro-guest at users.alioth.debian.org wrote:
> The following commit has been merged in the master branch:
> commit fa5782ca000f51e2076c67040d182fd6b5b2f478
> Author: Alessio Treglia <quadrispro at ubuntu.com>
> Date: Fri Apr 9 03:15:13 2010 +0200
>
> Install config.{guess,sub} into the right location (Closes: #569052).
>
> diff --git a/debian/rules b/debian/rules
> index 51acc60..c0560e5 100755
> --- a/debian/rules
> +++ b/debian/rules
> @@ -15,8 +15,10 @@ endif
> dh --with quilt $@
>
> override_dh_auto_configure:
> + cd config
> ln -f -s /usr/share/misc/config.guess
> ln -f -s /usr/share/misc/config.sub
> + cd ..
> dh_auto_configure -- \
this will not work. each line in make is executed in a subshell.
This should work:
cd config && \
ln -f -s /usr/share/misc/config.guess && \
ln -f -s /usr/share/misc/config.sub
dh_auto_configure -- ...
--
Gruesse/greetings,
Reinhard Tartler, KeyID 945348A4
More information about the pkg-multimedia-maintainers
mailing list