blob: 1376aa98b3bc9e07e4a779a7c2ee06d88e41c1fa (
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/ kernel/ -maxdepth 1 -type d | tail -n+2`; do \
chmod -R +x $$x; \
done
|