Repository : ssh://git@open-mesh.org/alfred
On branch : master
commit 952afab131dc23934c9fd8a9da6d974173790cb2 Author: Simon Wunderlich siwu@hrz.tu-chemnitz.de Date: Sun May 5 15:22:36 2013 +0200
alfred: compile debugfs.o separately for vis
accessing ../debugfs.o might fail when doing parallel builds
Reported-by: Sven Eckelmann sven@narfation.org Signed-off-by: Simon Wunderlich siwu@hrz.tu-chemnitz.de
952afab131dc23934c9fd8a9da6d974173790cb2 vis/Makefile | 2 +- vis/debugfs.c | 1 + vis/debugfs.h | 1 + vis/vis.h | 2 +- 4 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/vis/Makefile b/vis/Makefile index b580a3c..5ec0423 100644 --- a/vis/Makefile +++ b/vis/Makefile @@ -20,7 +20,7 @@
# alfred build BINARY_NAME = vis -OBJ = vis.o ../debugfs.o +OBJ = vis.o debugfs.o
# alfred flags and options CFLAGS += -pedantic -Wall -W -std=gnu99 -fno-strict-aliasing -MD diff --git a/vis/debugfs.c b/vis/debugfs.c new file mode 120000 index 0000000..45fb24d --- /dev/null +++ b/vis/debugfs.c @@ -0,0 +1 @@ +../debugfs.c \ No newline at end of file diff --git a/vis/debugfs.h b/vis/debugfs.h new file mode 120000 index 0000000..094e733 --- /dev/null +++ b/vis/debugfs.h @@ -0,0 +1 @@ +../debugfs.h \ No newline at end of file diff --git a/vis/vis.h b/vis/vis.h index acabb45..7bc43e1 100644 --- a/vis/vis.h +++ b/vis/vis.h @@ -37,7 +37,7 @@ #include <netinet/in.h> #include "../packet.h" #include "../list.h" -#include "../debugfs.h" +#include "debugfs.h"
#ifndef SOURCE_VERSION