File: bug-131315

package info (click to toggle)
quake2-data 9
  • links: PTS
  • area: contrib
  • in suites: woody
  • size: 112 kB
  • ctags: 19
  • sloc: sh: 421; exp: 106; makefile: 55
file content (16 lines) | stat: -rwxr-xr-x 222 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

# bug 131315, 131370
# inclusion of -x in postinst

. defaults

TEST=`find $DEBIAN -type f -perm +111 -print0 |xargs -0 grep '^set.*-x'`

if [ "$TEST" ]; then
	echo $TEST
	echo $0 FAILED
	exit 1
else
	exit 0
fi