summaryrefslogtreecommitdiff
path: root/net-misc/lldpd/files/lldpd-1.0.5-cpp.patch
blob: 0c3fc1964d40cfe214adac884270104bc18296d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/src/daemon/Makefile.am b/src/daemon/Makefile.am
index 0d5f2f3..cc41a8a 100644
--- a/src/daemon/Makefile.am
+++ b/src/daemon/Makefile.am
@@ -108,7 +108,7 @@ CLEANFILES    += syscall-names.h
 syscall-names.h:
 	$(AM_V_GEN)
 	$(AM_V_at)echo "static const char *syscall_names[] = {" > $@ ;\
-	echo "#include <sys/syscall.h>" | cpp -dM | grep '^#define __NR_' | \
+	echo "#include <sys/syscall.h>" | $(CPP) -dM | grep '^#define __NR_' | \
 		LC_ALL=C sed -r -n -e 's/^\#define[ \t]+__NR_([a-z0-9_]+)[ \t]+([0-9]+)(.*)/ [\2] = "\1",/p' >> $@ ;\
 	echo "};" >> $@
 nodist_liblldpd_la_SOURCES += syscall-names.h