blob: 9320c12ea7b1a8bd65fc2a0fd4e9c14f02294623 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
--- glusterfsd/src/Makefile.am
+++ glusterfsd/src/Makefile.am
@@ -20,5 +20,6 @@ uninstall-local:
install-data-local:
$(INSTALL) -d -m 755 $(DESTDIR)$(localstatedir)/run
$(INSTALL) -d -m 755 $(DESTDIR)$(localstatedir)/log/glusterfs
+ $(INSTALL) -d -m 755 $(DESTDIR)$(sbindir)
rm -f $(DESTDIR)$(sbindir)/glusterfs
ln -s glusterfsd $(DESTDIR)$(sbindir)/glusterfs
--- libglusterfs/src/Makefile.am
+++ libglusterfs/src/Makefile.am
@@ -15,7 +15,9 @@
graph.lex.c: graph.l y.tab.h
$(LEX) -t $(srcdir)/graph.l > $@
-y.tab.c y.tab.h: graph.y
+y.tab.c: y.tab.h
+
+y.tab.h: graph.y
$(YACC) -d $(srcdir)/graph.y
CLEANFILES = graph.lex.c y.tab.c y.tab.h
|