diff options
author | kraxel <kraxel> | 2006-07-03 13:31:24 +0000 |
---|---|---|
committer | kraxel <kraxel> | 2006-07-03 13:31:24 +0000 |
commit | bad7d2ac304d1844ae75d988aa3a61efada4c5f9 (patch) | |
tree | fa434e002b3a6c4544ef77eefb7573e9edc80df5 | |
parent | 146df176d8ead4435bf5e3f9d5dda7be98531cad (diff) | |
download | xenwatch-bad7d2ac304d1844ae75d988aa3a61efada4c5f9.tar.gz |
path fixups
-rw-r--r-- | GNUmakefile | 4 | ||||
-rw-r--r-- | xenscreen.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/GNUmakefile b/GNUmakefile index aa6b11a..ab7d5f4 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -62,8 +62,8 @@ $(NEEDS_XENSTORE) : LDLIBS += -lxenstore build: $(TARGETS) install: build - $(INSTALL_DIR) -d /etc/xen # $(bindir) - $(INSTALL_DATA) xenscreenrc /etc/xen + $(INSTALL_DIR) -d $(DESTDIR)/etc/xen $(bindir) + $(INSTALL_DATA) xenscreenrc $(DESTDIR)/etc/xen $(INSTALL_BINARY) -s $(TARGETS) $(bindir) clean: diff --git a/xenscreen.c b/xenscreen.c index a464236..3ad5868 100644 --- a/xenscreen.c +++ b/xenscreen.c @@ -26,8 +26,8 @@ struct dom { static LIST_HEAD(doms); static int domcnt; -//static char *screenrc = "/etc/xen/xenscreenrc"; -static char *screenrc = "/home/kraxel/projects/xenwatch/xenscreenrc"; +static char *screenrc = "/etc/xen/xenscreenrc"; +//static char *screenrc = "/home/kraxel/projects/xenwatch/xenscreenrc"; static char *screen_session = "xencon"; static char *screen_title = "watch"; |