diff options
author | Jean-Marc Zucconi <jmz@FreeBSD.org> | 1996-03-17 20:22:39 +0000 |
---|---|---|
committer | Jean-Marc Zucconi <jmz@FreeBSD.org> | 1996-03-17 20:22:39 +0000 |
commit | fc94a9d79622b69da048a2d3170b9dcffe629322 (patch) | |
tree | b61747d3117e0eac7e2eefa2cbcddb4791fca8f3 /comms | |
parent | 8e690220ece1a0335b889068216a1878deb403a4 (diff) | |
download | ports-fc94a9d79622b69da048a2d3170b9dcffe629322.tar.gz ports-fc94a9d79622b69da048a2d3170b9dcffe629322.zip |
The original patch was incomplete and the installation did not work.
Notes
Notes:
svn path=/head/; revision=2846
Diffstat (limited to 'comms')
-rw-r--r-- | comms/mgetty+sendfax/files/patch-ab | 22 |
1 files changed, 17 insertions, 5 deletions
diff --git a/comms/mgetty+sendfax/files/patch-ab b/comms/mgetty+sendfax/files/patch-ab index 78d30fdd53a9..c50d3d0785ca 100644 --- a/comms/mgetty+sendfax/files/patch-ab +++ b/comms/mgetty+sendfax/files/patch-ab @@ -1,5 +1,5 @@ *** Makefile.orig Wed Aug 30 12:47:16 1995 ---- Makefile Tue Mar 12 02:57:34 1996 +--- Makefile Sun Mar 17 04:52:26 1996 *************** *** 4,11 **** # @@ -92,7 +92,7 @@ # binaries # *************** -*** 547,555 **** +*** 547,561 **** # data files + directories # test -d $(LIBDIR) || \ @@ -101,8 +101,14 @@ ! ( mkdir `dirname $(CONFDIR)` $(CONFDIR); chmod 755 $(CONFDIR)) test -f $(CONFDIR)/login.config || \ $(INSTALL) -o root -m 600 login.config $(CONFDIR)/ - test -f $(CONFDIR)/mgetty.config || \ ---- 547,555 ---- +! test -f $(CONFDIR)/mgetty.config || \ +! $(INSTALL) -o root -m 600 mgetty.config $(CONFDIR)/ +! test -f $(CONFDIR)/sendfax.config || \ +! $(INSTALL) -o root -m 600 sendfax.config $(CONFDIR)/ + test -f $(CONFDIR)/dialin.config || \ + $(INSTALL) -o root -m 600 dialin.config $(CONFDIR)/ + # +--- 547,561 ---- # data files + directories # test -d $(LIBDIR) || \ @@ -111,4 +117,10 @@ ! ( mkdir -p `dirname $(CONFDIR)` $(CONFDIR); chmod 755 $(CONFDIR)) test -f $(CONFDIR)/login.config || \ $(INSTALL) -o root -m 600 login.config $(CONFDIR)/ - test -f $(CONFDIR)/mgetty.config || \ +! # test -f $(CONFDIR)/mgetty.config || \ +! # $(INSTALL) -o root -m 600 mgetty.config $(CONFDIR)/ +! # test -f $(CONFDIR)/sendfax.config || \ +! # $(INSTALL) -o root -m 600 sendfax.config $(CONFDIR)/ + test -f $(CONFDIR)/dialin.config || \ + $(INSTALL) -o root -m 600 dialin.config $(CONFDIR)/ + # |