blob: 2a5ae552fcc23bca4e5fff64d84954ff8753b85f (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/usr/bin/make -f
include /usr/share/cdbs/1/rules/debhelper.mk
pre-build::
chmod +x init mkinitramfs
chmod +x hooks/*
for x in `find scripts/ -maxdepth 1 -type d | tail -n+2`; do \
chmod -R +x $$x; \
done
|