]> git.armaanb.net Git - dmenu.git/commitdiff
cache option in config.mk
authorConnor Lane Smith <cls@lubutu.com>
Fri, 7 Jan 2011 18:54:40 +0000 (18:54 +0000)
committerConnor Lane Smith <cls@lubutu.com>
Fri, 7 Jan 2011 18:54:40 +0000 (18:54 +0000)
config.mk
dmenu_path.c

index ebaab81afa15c563ebbe587a23a9e4fdc72a0b63..08ea1bf0a7ccc29a6e6365ac31dd9eeb8852b928 100644 (file)
--- a/config.mk
+++ b/config.mk
@@ -1,7 +1,9 @@
 # dmenu version
 VERSION = 4.2.1
 
-# Customize below to fit your system
+# dmenu_path cache (absolute or relative to $HOME)
+CACHE = .dmenu_cache
+
 
 # paths
 PREFIX = /usr/local
@@ -19,7 +21,7 @@ INCS = -I${X11INC}
 LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS}
 
 # flags
-CPPFLAGS = -D_BSD_SOURCE -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS}
+CPPFLAGS = -D_BSD_SOURCE -DVERSION=\"${VERSION}\" -DCACHE=\"${CACHE}\" ${XINERAMAFLAGS}
 CFLAGS   = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
 LDFLAGS  = -s ${LIBS}
 
index 8df2667645b5b8db5650e4d0a7e7b4cbe6a2726e..407477a5703002f335ce70aace15c4136fe7f0ca 100644 (file)
@@ -7,8 +7,6 @@
 #include <unistd.h>
 #include <sys/stat.h>
 
-#define CACHE ".dmenu_cache"
-
 static void die(const char *s);
 static int qstrcmp(const void *a, const void *b);
 static void scan(void);
@@ -26,7 +24,7 @@ main(void) {
        if(chdir(home) < 0)
                die("chdir failed");
        if(uptodate()) {
-               execlp("cat", "cat", CACHE, NULL);
+               execl("/bin/cat", "cat", CACHE, NULL);
                die("exec failed");
        }
        scan();