fixed dist target bug 22cf9626
Anselm R Garbe · 2010-11-20 09:25 3 file(s) · +3 −2
Makefile +1 −1
29 29
dist: clean
30 30
	@echo creating dist tarball
31 31
	@mkdir -p dmenu-${VERSION}
32 -
	@cp LICENSE Makefile README config.mk dmenu.1 dmenu.c dmenu_path.c dmenu_run dmenu-${VERSION}
32 +
	@cp LICENSE Makefile README config.mk dmenu.1 dmenu.c draw.c draw.h dmenu_path.c dmenu_run dmenu-${VERSION}
33 33
	@tar -cf dmenu-${VERSION}.tar dmenu-${VERSION}
34 34
	@gzip dmenu-${VERSION}.tar
35 35
	@rm -rf dmenu-${VERSION}
config.mk +1 −1
1 1
# dmenu version
2 -
VERSION = 4.2
2 +
VERSION = 4.2.1
3 3
4 4
# Customize below to fit your system
5 5
dmenu_path.c +1 −0
1 1
/* See LICENSE file for copyright and license details. */
2 2
#include <dirent.h>
3 +
#include <limits.h>
3 4
#include <stdio.h>
4 5
#include <stdlib.h>
5 6
#include <string.h>