]> git.armaanb.net Git - dmenu.git/commitdiff
fixed dist target bug
authorAnselm R Garbe <anselm@garbe.us>
Sat, 20 Nov 2010 09:25:04 +0000 (09:25 +0000)
committerAnselm R Garbe <anselm@garbe.us>
Sat, 20 Nov 2010 09:25:04 +0000 (09:25 +0000)
Makefile
config.mk
dmenu_path.c

index 8abfd0ceb4c06015574355747660f7ac09fcff8d..c3934e790df2a8f9f3ec2b459139b2d201c0d4bd 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -29,7 +29,7 @@ clean:
 dist: clean
        @echo creating dist tarball
        @mkdir -p dmenu-${VERSION}
-       @cp LICENSE Makefile README config.mk dmenu.1 dmenu.c dmenu_path.c dmenu_run dmenu-${VERSION}
+       @cp LICENSE Makefile README config.mk dmenu.1 dmenu.c draw.c draw.h dmenu_path.c dmenu_run dmenu-${VERSION}
        @tar -cf dmenu-${VERSION}.tar dmenu-${VERSION}
        @gzip dmenu-${VERSION}.tar
        @rm -rf dmenu-${VERSION}
index 4264514d908f3845e594e3500d01208de32f9eb6..ebaab81afa15c563ebbe587a23a9e4fdc72a0b63 100644 (file)
--- a/config.mk
+++ b/config.mk
@@ -1,5 +1,5 @@
 # dmenu version
-VERSION = 4.2
+VERSION = 4.2.1
 
 # Customize below to fit your system
 
index 15d0da0ec9486d880dbb46e921ec7687f7c51f08..8df2667645b5b8db5650e4d0a7e7b4cbe6a2726e 100644 (file)
@@ -1,5 +1,6 @@
 /* See LICENSE file for copyright and license details. */
 #include <dirent.h>
+#include <limits.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>