Update of /cvsroot/alsa/alsa-driver/utils
In directory sc8-pr-cvs1:/tmp/cvs-serv1156/utils

Added Files:
        patch-alsa 
Log Message:
- fixed --with-isapnp option of configure.
- changed (added) to build / install for 2.6 kernels.

  with this change, you cannot run make in the local directory any more
  unless you set SND_TOPDIR environment variable.  it points to the path
  name of the top directory of alsa-driver directory.



--- NEW FILE: patch-alsa ---
#!/bin/sh
# 
# copy a file from alsa-kernel tree and apply a patch
#

dst="$1"
pat=`echo $dst | sed -e 's/.c$/.patch/'`

case $dst in
/*)
        xtmp=`dirname $dst | sed -e s@/acore@/core@ -e [EMAIL 
PROTECTED]/@alsa-driver/alsa-kernel/@`/`basename $dst`
        echo copying file $xtmp
        cp -v $xtmp $dst
        patch -p0 $dst $pat
        ;;
*)
        curd=`/bin/pwd`
        MODCURDIR=`echo $curd | sed -e [EMAIL PROTECTED]/@@`
        xtmp=`echo $MODCURDIR | sed -e 's/^acore/core/'`/$dst
        echo copying file alsa-kernel/$xtmp
        cp $SND_TOPDIR/alsa-kernel/$xtmp $@
        patch -p0 -i $pat
        ;;
esac
exit 0




-------------------------------------------------------
This SF.Net email sponsored by: ApacheCon 2003,
16-19 November in Las Vegas. Learn firsthand the latest
developments in Apache, PHP, Perl, XML, Java, MySQL,
WebDAV, and more! http://www.apachecon.com/
_______________________________________________
Alsa-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/alsa-cvslog

Reply via email to