<div dir="ltr"><div class="gmail_default" style="font-size:small">Hi, <br><br></div><div class="gmail_default" style="font-size:small">I'm using Ubuntu 15.04 and was trying to run the script (<a href="http://www.alsa-project.org/alsa-compile.sh">http://www.alsa-project.org/alsa-compile.sh</a>) but it was telling me that i don't have 'patch' package installed, but i have it.<br><br></div><div class="gmail_default" style="font-size:small">I found that the problem is because is expected that<br><br>patch --version | head -1 | cut -d ' ' -f 1<br><br></div><div class="gmail_default" style="font-size:small">would return 'patch'<br><br></div><div class="gmail_default" style="font-size:small">But instead it return 'GNU', because here the name id "GNU patch"<br><br></div><div class="gmail_default" style="font-size:small">So maybe you could change de script for:<br><br>patch --version | head -1 | cut -d ' ' -f 1-2 | grep patch -o<br></div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small"><br></div></div>