[vlc-devel] commit: Fix unsorted check_symbols ( Rémi Denis-Courmont )
    git version control 
    git at videolan.org
       
    Tue Aug  4 18:40:05 CEST 2009
    
    
  
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Tue Aug  4 19:36:22 2009 +0300| [368cce98079483c183232c4d9abe2984b8bb1e14] | committer: Rémi Denis-Courmont 
Fix unsorted check_symbols
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=368cce98079483c183232c4d9abe2984b8bb1e14
---
 src/check_symbols |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/check_symbols b/src/check_symbols
index 59f05f1..8d7a4e4 100755
--- a/src/check_symbols
+++ b/src/check_symbols
@@ -2,7 +2,7 @@
 # Plugin API consistency check for VLC
 # Copyright © 2007 Rémi Denis-Courmont.
 
-if ! diff -u ${srcdir}/libvlccore.sym libvlc-sorted.sym; then
+if ! diff -u libvlc-headers.sym libvlc-sorted.sym; then
 	echo "Mismatching symbols found!"
 	exit 1
 fi
    
    
More information about the vlc-devel
mailing list