aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile4
-rw-r--r--bin/shalt.c2
2 files changed, 2 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index be66946..b9f4ba9 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,7 @@ BINDIR = ${PREFIX}/bin
CONFDIR = /etc/init
CC = cc
-CFLAGS = -std=c99 -Wall -pedantic
+CFLAGS = -std=c99 -Wall -pedantic -D_XOPEN_SOURCE=500
LDFLAGS = -static
BIN = bin/shalt
@@ -19,7 +19,7 @@ all: ${BIN}
clean:
rm -f ${BIN} ${OBJ}
-install: bin/shalt
+install: ${BIN}
mkdir -p ${DESTDIR}${CONFDIR} ${DESTDIR}${INITDIR} ${DESTDIR}${BINDIR}
cp bin/shalt ${DESTDIR}${BINDIR}/shalt
chmod 755 ${DESTDIR}${BINDIR}/shalt
diff --git a/bin/shalt.c b/bin/shalt.c
index e47e7df..dd64286 100644
--- a/bin/shalt.c
+++ b/bin/shalt.c
@@ -1,6 +1,4 @@
/* shalt -- simple halt utility */
-#define _XOPEN_SOURCE 500
-
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>