/usr/bin/fix-include.sh is in kdesdk-scripts 4:4.13.0-0ubuntu1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | #!/bin/sh
# fix-include.sh
#
# By Laurent Montel <montel@kde.org> (2007)
# Licenced under the LGPL
# How to test it ?
# go into <kde4_install_dir>/include/KDE/
# sh fix-include.sh
test_include() {
for file in $path/* ;
do
if test -d $file ; then
echo "Check include into directory : $file";
path=$file;
else
# Search file which have "#include"
include=`echo "$file" | xargs grep "#include"`;
# Get include file
new=`echo "$include" |perl -pi -e 's!#include !!'`;
new=`echo "$new" |perl -pi -e 's!\\"!!g'`;
# Get absolute include
headerfile=$PWD/$new;
# Test error
if test ! -f "$headerfile" ; then
echo "Header <$file> is not correct it try to load <$new>";
else
oldpath=$PWD;
# remove path from file => we can get class name.
classname=`echo "$file" | perl -pi -e "s!$oldpath/!!"`;
classexist=`grep -l $classname $headerfile`;
if test -z "$classexist" ; then
echo "Header <$file> which try to load <$new> doesn't have $classname into this file. Fix it please";
currentpath=`echo "$headerfile" | perl -pi -e "s!$new!!"`;
#remove KDE
currentpath=`echo "$currentpath" | perl -pi -e "s!KDE!!"`;
classexist=`grep -lr $classname $currentpath/*`;
if test ! -z "$classexist" ; then
echo "This class <$classname> is defined into other header <$classexist>";
fi
fi
fi
fi
done
}
path=$PWD;
test_include
|