diff options
author | Anselm R. Garbe <arg@suckless.org> | 2007-02-21 11:04:33 +0100 |
---|---|---|
committer | Anselm R. Garbe <arg@suckless.org> | 2007-02-21 11:04:33 +0100 |
commit | ad4962c7eb5f62400c762fea90d9be0e85f5c33d (patch) | |
tree | b8ba09eff6dc0146447afaf57313e67d947b653e | |
parent | d180ba418cd56f3a743d9a5863f86f7eae21602f (diff) | |
download | dwm-ad4962c7eb5f62400c762fea90d9be0e85f5c33d.tar.gz |
fixed quoting and a comment 3.6
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | dwm.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile index 6127456..2c015b9 100644 --- a/Makefile +++ b/Makefile @@ -49,7 +49,7 @@ install: all @chmod 755 ${DESTDIR}${PREFIX}/bin/dwm @echo installing manual page to ${DESTDIR}${MANPREFIX}/man1 @mkdir -p ${DESTDIR}${MANPREFIX}/man1 - @sed 's/VERSION/${VERSION}/g' < dwm.1 > ${DESTDIR}${MANPREFIX}/man1/dwm.1 + @sed "s/VERSION/${VERSION}/g" < dwm.1 > ${DESTDIR}${MANPREFIX}/man1/dwm.1 @chmod 644 ${DESTDIR}${MANPREFIX}/man1/dwm.1 uninstall: diff --git a/dwm.h b/dwm.h index 42f847b..2ae48fa 100644 --- a/dwm.h +++ b/dwm.h @@ -152,5 +152,5 @@ extern void view(Arg *arg); /* views the tag with arg's index */ /* util.c */ extern void *emallocz(unsigned int size); /* allocates zero-initialized memory, exits on error */ extern void eprint(const char *errstr, ...); /* prints errstr and exits with 1 */ -extern void spawn(Arg *arg); /* forks a new subprocess with to arg's cmd */ +extern void spawn(Arg *arg); /* forks a new subprocess with arg's cmd */ |