diff options
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | config.mk | 2 | ||||
-rw-r--r-- | dmenu_path.c | 1 |
3 files changed, 3 insertions, 2 deletions
@@ -29,7 +29,7 @@ clean: | |||
29 | dist: clean | 29 | dist: clean |
30 | @echo creating dist tarball | 30 | @echo creating dist tarball |
31 | @mkdir -p dmenu-${VERSION} | 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 | @tar -cf dmenu-${VERSION}.tar dmenu-${VERSION} | 33 | @tar -cf dmenu-${VERSION}.tar dmenu-${VERSION} |
34 | @gzip dmenu-${VERSION}.tar | 34 | @gzip dmenu-${VERSION}.tar |
35 | @rm -rf dmenu-${VERSION} | 35 | @rm -rf dmenu-${VERSION} |
@@ -1,5 +1,5 @@ | |||
1 | # dmenu version | 1 | # dmenu version |
2 | VERSION = 4.2 | 2 | VERSION = 4.2.1 |
3 | 3 | ||
4 | # Customize below to fit your system | 4 | # Customize below to fit your system |
5 | 5 | ||
diff --git a/dmenu_path.c b/dmenu_path.c index 15d0da0..8df2667 100644 --- a/dmenu_path.c +++ b/dmenu_path.c | |||
@@ -1,5 +1,6 @@ | |||
1 | /* See LICENSE file for copyright and license details. */ | 1 | /* See LICENSE file for copyright and license details. */ |
2 | #include <dirent.h> | 2 | #include <dirent.h> |
3 | #include <limits.h> | ||
3 | #include <stdio.h> | 4 | #include <stdio.h> |
4 | #include <stdlib.h> | 5 | #include <stdlib.h> |
5 | #include <string.h> | 6 | #include <string.h> |