diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-04-20 17:50:20 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-04-20 17:50:20 +0000 |
commit | aac1c333cfb4cca756c510fc41651050b77f2198 (patch) | |
tree | 76736abf4af57da2a4c7e2bcd0d125efeb8c47af | |
parent | [w3m-dev 03178] Parser of ``cols'' and ``rows'' (diff) | |
download | w3m-aac1c333cfb4cca756c510fc41651050b77f2198.tar.gz w3m-aac1c333cfb4cca756c510fc41651050b77f2198.zip |
[w3m-dev 03181] KEYBIND_SRC was not passed to scripts/Makefile
* Makefile (all-scripts): pass KEYBIND_SRC
From: Kiyokazu SUTO <suto@ks-and-ks.ne.jp>
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | XMakefile | 4 |
2 files changed, 8 insertions, 3 deletions
@@ -1,3 +1,8 @@ +2002-04-21 Kiyokazu SUTO <suto@ks-and-ks.ne.jp> + + * [w3m-dev 03181] KEYBIND_SRC was not passed to scripts/Makefile + * Makefile (all-scripts): pass KEYBIND_SRC + 2002-04-17 Kiyokazu SUTO <suto@ks-and-ks.ne.jp> * [w3m-dev 03178] Parser of ``cols'' and ``rows'' @@ -3359,4 +3364,4 @@ * release-0-2-1 * import w3m-0.2.1 -$Id: ChangeLog,v 1.372 2002/04/17 02:44:22 ukai Exp $ +$Id: ChangeLog,v 1.373 2002/04/20 17:50:20 ukai Exp $ @@ -1,4 +1,4 @@ -# $Id: XMakefile,v 1.22 2002/03/19 16:27:20 ukai Exp $ +# $Id: XMakefile,v 1.23 2002/04/20 17:50:21 ukai Exp $ SRCS=main.c file.c buffer.c display.c etc.c search.c linein.c table.c local.c \ form.c map.c frame.c rc.c menu.c mailcap.c image.c\ func.c cookie.c history.c backend.c $(KEYBIND_SRC) @@ -137,7 +137,7 @@ install-helpfile: all-scripts: for dir in $(SCRIPTSUBDIRS); \ do \ - (cd $$dir; $(MAKE) PERL='$(PERL)' BIN_DIR='$(BIN_DIR)' LIB_DIR='$(LIB_DIR)' HELP_DIR='$(HELP_DIR)' RC_DIR='$(RC_DIR)'); \ + (cd $$dir; $(MAKE) PERL='$(PERL)' BIN_DIR='$(BIN_DIR)' LIB_DIR='$(LIB_DIR)' HELP_DIR='$(HELP_DIR)' RC_DIR='$(RC_DIR)' KEYBIND_SRC='$(KEYBIND_SRC)'); \ done install-scripts: all-scripts |