linux-media.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Build change in media_build to support Debian
@ 2012-01-19 23:04 Benjamin Limmer
  2012-01-20 10:20 ` Mauro Carvalho Chehab
  0 siblings, 1 reply; 4+ messages in thread
From: Benjamin Limmer @ 2012-01-19 23:04 UTC (permalink / raw)
  To: linux-media@vger.kernel.org

commit 2949a7393f3e2598d4de49b408587462b11f819f
Author: Ben Limmer <benjamin.limmer@readytalk.com>
Date:   Thu Jan 19 16:01:15 2012 -0700

    Update to build script to give Debian users the Ubunutu package hints. The aptitude package names are the same.

diff --git a/build b/build
index c3947b3..6843033 100755
--- a/build
+++ b/build
@@ -134,6 +134,10 @@ sub give_hints()
                give_arch_linux_hints;
                return;
        }
+       if ($system_release =~ /Debian/) {
+               give_ubuntu_hints;
+               return; 
+       }
 
        # Fall-back to generic hint code
        foreach my $prog (@missing) {


Please see the above commit message. This is an easy change to support hints for debian users. I've confirmed these changes work on Debian Squeeze.

-Ben Limmer

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: Build change in media_build to support Debian
  2012-01-19 23:04 Build change in media_build to support Debian Benjamin Limmer
@ 2012-01-20 10:20 ` Mauro Carvalho Chehab
  2012-01-20 13:34   ` Gianluca Gennari
  0 siblings, 1 reply; 4+ messages in thread
From: Mauro Carvalho Chehab @ 2012-01-20 10:20 UTC (permalink / raw)
  To: Benjamin Limmer; +Cc: linux-media@vger.kernel.org

Em 19-01-2012 21:04, Benjamin Limmer escreveu:
> commit 2949a7393f3e2598d4de49b408587462b11f819f
> Author: Ben Limmer <benjamin.limmer@readytalk.com>
> Date:   Thu Jan 19 16:01:15 2012 -0700
> 
>     Update to build script to give Debian users the Ubunutu package hints. The aptitude package names are the same.
> 
> diff --git a/build b/build
> index c3947b3..6843033 100755
> --- a/build
> +++ b/build
> @@ -134,6 +134,10 @@ sub give_hints()
>                 give_arch_linux_hints;
>                 return;
>         }
> +       if ($system_release =~ /Debian/) {
> +               give_ubuntu_hints;
> +               return; 
> +       }
>  
>         # Fall-back to generic hint code
>         foreach my $prog (@missing) {
> 
> 
> Please see the above commit message. This is an easy change to support hints for debian users. I've confirmed these changes work on Debian Squeeze.
> 
> -Ben Limmer--
> To unsubscribe from this list: send the line "unsubscribe linux-media" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

Applied, thanks!

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Build change in media_build to support Debian
  2012-01-20 10:20 ` Mauro Carvalho Chehab
@ 2012-01-20 13:34   ` Gianluca Gennari
  2012-01-20 13:57     ` Mauro Carvalho Chehab
  0 siblings, 1 reply; 4+ messages in thread
From: Gianluca Gennari @ 2012-01-20 13:34 UTC (permalink / raw)
  To: Mauro Carvalho Chehab, linux-media@vger.kernel.org; +Cc: Benjamin Limmer

Il 20/01/2012 11:20, Mauro Carvalho Chehab ha scritto:
> Em 19-01-2012 21:04, Benjamin Limmer escreveu:
>> commit 2949a7393f3e2598d4de49b408587462b11f819f
>> Author: Ben Limmer <benjamin.limmer@readytalk.com>
>> Date:   Thu Jan 19 16:01:15 2012 -0700
>>
>>     Update to build script to give Debian users the Ubunutu package hints. The aptitude package names are the same.
>>
>> diff --git a/build b/build
>> index c3947b3..6843033 100755
>> --- a/build
>> +++ b/build
>> @@ -134,6 +134,10 @@ sub give_hints()
>>                 give_arch_linux_hints;
>>                 return;
>>         }
>> +       if ($system_release =~ /Debian/) {
>> +               give_ubuntu_hints;
>> +               return; 
>> +       }
>>  
>>         # Fall-back to generic hint code
>>         foreach my $prog (@missing) {
>>
>>
>> Please see the above commit message. This is an easy change to support hints for debian users. I've confirmed these changes work on Debian Squeeze.
>>
>> -Ben Limmer--
>> To unsubscribe from this list: send the line "unsubscribe linux-media" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 
> Applied, thanks!
> --
> To unsubscribe from this list: send the line "unsubscribe linux-media" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 

Hi Mauro,
after this patch, the "build" script on media_build has lost the
"execute" permissions.
Can you "chmod +x" it again?

Best regards,
Gianluca

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Build change in media_build to support Debian
  2012-01-20 13:34   ` Gianluca Gennari
@ 2012-01-20 13:57     ` Mauro Carvalho Chehab
  0 siblings, 0 replies; 4+ messages in thread
From: Mauro Carvalho Chehab @ 2012-01-20 13:57 UTC (permalink / raw)
  To: gennarone; +Cc: linux-media@vger.kernel.org, Benjamin Limmer

Em 20-01-2012 11:34, Gianluca Gennari escreveu:
> Il 20/01/2012 11:20, Mauro Carvalho Chehab ha scritto:
>> Em 19-01-2012 21:04, Benjamin Limmer escreveu:
>>> commit 2949a7393f3e2598d4de49b408587462b11f819f
>>> Author: Ben Limmer <benjamin.limmer@readytalk.com>
>>> Date:   Thu Jan 19 16:01:15 2012 -0700
>>>
>>>     Update to build script to give Debian users the Ubunutu package hints. The aptitude package names are the same.
>>>
>>> diff --git a/build b/build
>>> index c3947b3..6843033 100755
>>> --- a/build
>>> +++ b/build
>>> @@ -134,6 +134,10 @@ sub give_hints()
>>>                 give_arch_linux_hints;
>>>                 return;
>>>         }
>>> +       if ($system_release =~ /Debian/) {
>>> +               give_ubuntu_hints;
>>> +               return; 
>>> +       }
>>>  
>>>         # Fall-back to generic hint code
>>>         foreach my $prog (@missing) {
>>>
>>>
>>> Please see the above commit message. This is an easy change to support hints for debian users. I've confirmed these changes work on Debian Squeeze.
>>>
>>> -Ben Limmer--
>>> To unsubscribe from this list: send the line "unsubscribe linux-media" in
>>> the body of a message to majordomo@vger.kernel.org
>>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>>
>> Applied, thanks!
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-media" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>>
> 
> Hi Mauro,
> after this patch, the "build" script on media_build has lost the
> "execute" permissions.
> Can you "chmod +x" it again?

Thanks for pointing it!

Fixed.
> 
> Best regards,
> Gianluca
> --
> To unsubscribe from this list: send the line "unsubscribe linux-media" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2012-01-20 13:57 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-19 23:04 Build change in media_build to support Debian Benjamin Limmer
2012-01-20 10:20 ` Mauro Carvalho Chehab
2012-01-20 13:34   ` Gianluca Gennari
2012-01-20 13:57     ` Mauro Carvalho Chehab

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).