fixed quoting and a comment ad4962c7
Anselm R. Garbe · 2007-02-21 11:04 2 file(s) · +2 −2
Makefile +1 −1
49 49
	@chmod 755 ${DESTDIR}${PREFIX}/bin/dwm
50 50
	@echo installing manual page to ${DESTDIR}${MANPREFIX}/man1
51 51
	@mkdir -p ${DESTDIR}${MANPREFIX}/man1
52 -
	@sed 's/VERSION/${VERSION}/g' < dwm.1 > ${DESTDIR}${MANPREFIX}/man1/dwm.1
52 +
	@sed "s/VERSION/${VERSION}/g" < dwm.1 > ${DESTDIR}${MANPREFIX}/man1/dwm.1
53 53
	@chmod 644 ${DESTDIR}${MANPREFIX}/man1/dwm.1
54 54
55 55
uninstall:
dwm.h +1 −1
152 152
/* util.c */
153 153
extern void *emallocz(unsigned int size);	/* allocates zero-initialized memory, exits on error */
154 154
extern void eprint(const char *errstr, ...);	/* prints errstr and exits with 1 */
155 -
extern void spawn(Arg *arg);			/* forks a new subprocess with to arg's cmd */
155 +
extern void spawn(Arg *arg);			/* forks a new subprocess with arg's cmd */
156 156