diff options
| author | Tatsuya Kinoshita <tats@debian.org> | 2018-01-20 23:38:25 +0000 | 
|---|---|---|
| committer | Tatsuya Kinoshita <tats@debian.org> | 2018-01-21 01:34:22 +0000 | 
| commit | 327bb74254bdf0272ad7e6c0e3d237537af57334 (patch) | |
| tree | b69a555dd786fc8a66c1df91f6cc521df5333876 | |
| parent | Make temporary directory safely when ~/.w3m is unwritable (diff) | |
| download | w3m-327bb74254bdf0272ad7e6c0e3d237537af57334.tar.gz w3m-327bb74254bdf0272ad7e6c0e3d237537af57334.zip | |
Do not remove w3mdict.cgi when "make distclean"
| -rw-r--r-- | scripts/Makefile.in | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/scripts/Makefile.in b/scripts/Makefile.in index 3384813..5beb9b0 100644 --- a/scripts/Makefile.in +++ b/scripts/Makefile.in @@ -34,7 +34,7 @@ CONF_DIR = $(sysconfdir)/$(PACKAGE)  DOCDIRS = @DOCDIRS@  AUXBIN_TARGETS	= xface2xpm -LIB_TARGETS	= dirlist.cgi w3mdict.cgi w3mhelp.cgi w3mmail.cgi +LIB_TARGETS	= dirlist.cgi w3mhelp.cgi w3mmail.cgi  HELP_TARGETS	= w3mhelp-funcname.pl w3mhelp-funcdesc-stamp  SUBDIRS = multipart w3mman  .PHONY: $(SUBDIRS) @@ -87,7 +87,7 @@ install: $(LIB_TARGETS) $(HELP_TARGETS)  	do      \  		$(INSTALL_SCRIPT) $$file $(DESTDIR)$(AUXBIN_DIR);  \  	done -	for file in $(LIB_TARGETS);     \ +	for file in w3mdict.cgi $(LIB_TARGETS);     \  	do      \  		$(INSTALL_SCRIPT) $$file $(DESTDIR)$(CGIBIN_DIR);  \  	done @@ -105,7 +105,7 @@ uninstall:  	do      \  		rm -f $(AUXBIN_DIR)/$$file; \  	done -	-for file in $(LIB_TARGETS); \ +	-for file in w3mdict.cgi $(LIB_TARGETS); \  	do      \  		rm -f $(LIB_DIR)/$$file; \  	done | 
