2b8d6edbc5
o re-add the utf-8 changes now that the scrolling is not slowed o scrolling is much faster now o fix compile time errors in on modern glibc systems o add /nuser command o wserv and ircio move into "libexec" dir.
38 lines
1.1 KiB
Text
38 lines
1.1 KiB
Text
$NetBSD: patch-ac,v 1.8 2014/01/02 07:57:49 mrg Exp $
|
|
|
|
--- Makefile.in.orig 2013-12-30 08:42:37.000000000 -0800
|
|
+++ Makefile.in 2014-01-01 23:21:21.000000000 -0800
|
|
@@ -127,8 +127,8 @@
|
|
CP = cp
|
|
MV = mv
|
|
SED = sed
|
|
-INSTALL = $(topdir)/bsdinstall -c -m 755
|
|
-INSTALL_DATA = $(topdir)/bsdinstall -c -m 644
|
|
+INSTALL = $(BSD_INSTALL_PROGRAM)
|
|
+INSTALL_DATA = $(BSD_INSTALL_DATA)
|
|
|
|
VERSION = @VERSION@
|
|
|
|
@@ -149,11 +149,9 @@
|
|
|
|
installirc: irc installdirs
|
|
$(INSTALL) irc $(INSTALL_IRC)-$(VERSION)
|
|
- $(INSTALL) ircbug $(bindir)/ircbug
|
|
- @if test -f $(INSTALL_IRC).old; then $(RM) $(INSTALL_IRC).old; fi
|
|
- @if test -f $(INSTALL_IRC); then $(MV) $(INSTALL_IRC) $(INSTALL_IRC).old; fi
|
|
+ $(BSD_INSTALL_SCRIPT) ircbug $(bindir)/ircbug
|
|
$(RM) $(INSTALL_IRC)
|
|
- $(LN) $(INSTALL_IRC_NAME)-$(VERSION) $(INSTALL_IRC)
|
|
+ cd ${bindir}; $(LN) irc-$(VERSION) irc
|
|
|
|
installscript: installdirs
|
|
( \
|
|
@@ -193,7 +191,7 @@
|
|
# $(INSTALL_DATA) $(topdir)/doc/query-pr.1 $(mandir)
|
|
|
|
installdirs:
|
|
- umask 022; $(topdir)/mkinstalldirs $(IRCLIB) $(bindir) $(mandir) \
|
|
+ $(topdir)/mkinstalldirs $(IRCLIB) $(bindir) $(mandir) \
|
|
$(INSTALL_SCRIPT) $(HELP_DIR) $(libexecdir)
|
|
|
|
clena clean:
|