| Makefile fixing - surf - surf browser, a WebKit based browser | |
| git clone git://git.suckless.org/surf | |
| Log | |
| Files | |
| Refs | |
| README | |
| LICENSE | |
| --- | |
| commit 2f639aede5709c2c5105e40d35b355bdddbcf4f5 | |
| parent f400f0d56f9a89984b40f5b8a57e410c0bf2c9e2 | |
| Author: Enno Boland (tox) <[email protected]> | |
| Date: Fri, 11 Sep 2009 09:38:53 +0200 | |
| Makefile fixing | |
| Diffstat: | |
| M Makefile | 2 +- | |
| M surf.c | 2 +- | |
| 2 files changed, 2 insertions(+), 2 deletions(-) | |
| --- | |
| diff --git a/Makefile b/Makefile | |
| @@ -35,7 +35,7 @@ clean: | |
| dist: clean | |
| @echo creating dist tarball | |
| @mkdir -p surf-${VERSION} | |
| - @cp -R LICENSE Makefile config.mk README \ | |
| + @cp -R LICENSE Makefile config.mk config.def.h README \ | |
| surf.1 ${SRC} surf-${VERSION} | |
| @tar -cf surf-${VERSION}.tar surf-${VERSION} | |
| @gzip surf-${VERSION}.tar | |
| diff --git a/surf.c b/surf.c | |
| @@ -16,7 +16,7 @@ | |
| #include <webkit/webkit.h> | |
| #include <glib/gstdio.h> | |
| -#define LENGTH(x) (sizeof x / sizeof x[0]) | |
| +#define LENGTH(x) (sizeof x / sizeof x[0]) | |
| #define CLEANMASK(mask) (mask & ~(GDK_MOD2_MASK)) | |
| Display *dpy; |