]> git.sesse.net Git - vlc/blobdiff - bootstrap.sh
* ALL: changed "struct foo_s" into "struct foo_t" to make greppers happy.
[vlc] / bootstrap.sh
index 020a2694b04e600fb89c04871de6578521063e8c..f68a83143d155b5ca42913703dd8dda13ffcec68 100755 (executable)
@@ -1,7 +1,7 @@
 #! /bin/sh
 
 ##  bootstrap.sh file for vlc, the VideoLAN Client
-##  $Id: bootstrap.sh,v 1.6 2002/07/11 19:28:13 sam Exp $
+##  $Id: bootstrap.sh,v 1.7 2002/07/20 18:01:41 sam Exp $
 ##
 ##  Authors: Samuel Hocevar <sam@zoy.org>
 
@@ -32,7 +32,7 @@ file=include/vlc_symbols.h
 rm -f $file && touch $file
 echo '/* DO NOT EDIT THIS FILE ! It was generated by bootstrap.sh */' >> $file
 echo '' >> $file
-echo 'struct module_symbols_s' >> $file
+echo 'struct module_symbols_t' >> $file
 echo '{' >> $file
 cat include/*.h | grep '^ *VLC_EXPORT.*;' | \
        sed 's/VLC_EXPORT( *\([^,]*\), *\([^,]*\), *\(.*\));.*/    \1 (* \2_inner) \3;/' | sort >> $file