|
Revision 918, 396 bytes
(checked in by takkaria, 3 months ago)
|
Use consistent newlines everywhere, and also set the svn:eol-style property to native on all text files.
|
- Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 |
include ../../mk/rules.mk |
|---|
| 2 |
include ../../mk/objective.mk |
|---|
| 3 |
|
|---|
| 4 |
OBJECTIVE_DATA = \ |
|---|
| 5 |
delete.me:${DATA_PATH}/apex |
|---|
| 6 |
|
|---|
| 7 |
install-posthook: |
|---|
| 8 |
if [ "x$(SETEGID)" != "x" ]; then \ |
|---|
| 9 |
printf "%10s %-20s\n" TOUCH ${DATA_PATH}/apex/scores.raw; \ |
|---|
| 10 |
if [ "x$(DRY)" = "x" ]; then \ |
|---|
| 11 |
touch ${DATA_PATH}/apex/scores.raw; \ |
|---|
| 12 |
chown -R root:${SETEGID} ${DATA_PATH}/apex; \ |
|---|
| 13 |
chmod -R g+w ${DATA_PATH}/apex; \ |
|---|
| 14 |
fi; \ |
|---|
| 15 |
fi; |
|---|