tfixed dist target bug - dmenu - Dmenu fork with xft fonts.
(HTM) git clone git://r-36.net/dmenu
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 22cf9626c770cef164de5254169abb1031e8e000
(DIR) parent 9e13ecabe883a18234eadaf9a3beb01f745ff2ba
(HTM) Author: Anselm R Garbe <anselm@garbe.us>
Date: Sat, 20 Nov 2010 09:25:04 +0000
fixed dist target bug
Diffstat:
Makefile | 2 +-
config.mk | 2 +-
dmenu_path.c | 1 +
3 files changed, 3 insertions(+), 2 deletions(-)
---
(DIR) diff --git a/Makefile b/Makefile
t@@ -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}
(DIR) diff --git a/config.mk b/config.mk
t@@ -1,5 +1,5 @@
# dmenu version
-VERSION = 4.2
+VERSION = 4.2.1
# Customize below to fit your system
(DIR) diff --git a/dmenu_path.c b/dmenu_path.c
t@@ -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>