File: maybe_fix_includes

package info (click to toggle)
bind 1%3A8.1.2-5
  • links: PTS
  • area: main
  • in suites: slink
  • size: 5,076 kB
  • ctags: 7,956
  • sloc: ansic: 54,479; sh: 6,936; makefile: 2,900; yacc: 1,223; perl: 315; lex: 221; awk: 45; sed: 15
file content (13 lines) | stat: -rwxr-xr-x 122 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

uname=/bin/uname

if [ -f $uname ]; then
	case `$uname -r` in
	4.5*)
		make fix_includes
		;;
	esac
fi

exit 0