Show More
@@ -31,15 +31,15 b' util.o: util.h' | |||
|
31 | 31 | |
|
32 | 32 | .PHONY: install |
|
33 | 33 | install: $(TARGET) |
|
34 | install -d $(DESTDIR)$(PREFIX)/bin | |
|
35 | install -m 755 $(TARGET) $(DESTDIR)$(PREFIX)/bin | |
|
36 | install -d $(DESTDIR)$(MANDIR) | |
|
37 | install -m 644 chg.1 $(DESTDIR)$(MANDIR) | |
|
34 | install -d "$(DESTDIR)$(PREFIX)"/bin | |
|
35 | install -m 755 "$(TARGET)" "$(DESTDIR)$(PREFIX)"/bin | |
|
36 | install -d "$(DESTDIR)$(MANDIR)" | |
|
37 | install -m 644 chg.1 "$(DESTDIR)$(MANDIR)" | |
|
38 | 38 | |
|
39 | 39 | .PHONY: serve |
|
40 | 40 | serve: |
|
41 | [ -d $(CHGSOCKDIR) ] || ( umask 077; mkdir $(CHGSOCKDIR) ) | |
|
42 | $(HG) serve --cwd / --cmdserver chgunix \ | |
|
41 | [ -d "$(CHGSOCKDIR)" ] || ( umask 077; mkdir "$(CHGSOCKDIR)" ) | |
|
42 | "$(HG)" serve --cwd / --cmdserver chgunix \ | |
|
43 | 43 | --address $(CHGSOCKNAME) \ |
|
44 | 44 | --config cmdserver.log=/dev/stderr |
|
45 | 45 |
General Comments 0
You need to be logged in to leave comments.
Login now