Author: superdump
Date: Wed Feb  4 00:38:00 2009
New Revision: 4018

Log:
None GNU find seems to require that the first argument be the base search path

Modified:
   libavfilter/checkout.sh

Modified: libavfilter/checkout.sh
==============================================================================
--- libavfilter/checkout.sh     Tue Feb  3 19:24:57 2009        (r4017)
+++ libavfilter/checkout.sh     Wed Feb  4 00:38:00 2009        (r4018)
@@ -7,4 +7,4 @@ echo "patching ffmpeg"
 for diff in $(ls $(pwd)/diffs/*.diff); do patch -d ffmpeg -p0 -i $diff; done
 
 echo "copying files to libavfilter"
-find -maxdepth 1 -type f -not -name $(basename $0) -exec cp {} 
ffmpeg/libavfilter \;
+find $(pwd) -maxdepth 1 -type f -not -name $(basename $0) -exec cp {} 
ffmpeg/libavfilter \;
_______________________________________________
FFmpeg-soc mailing list
[email protected]
https://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-soc

Reply via email to