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