diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 1995-05-29 13:46:40 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 1995-05-29 13:46:40 +0000 |
commit | 0d98f1227110082e9e507ca236458f6c363e25b6 (patch) | |
tree | 297f74782436a0f973b6b89d60c10f399af9a135 /misc/chord/files/patch-aa | |
parent | Remove comment about not being able to undefine a variable, as we *can* (diff) |
This commit was manufactured by cvs2svn to create tag 'RELENG_2_0_5_ALPHA'.release/2.0.5a
Diffstat (limited to 'misc/chord/files/patch-aa')
-rw-r--r-- | misc/chord/files/patch-aa | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/misc/chord/files/patch-aa b/misc/chord/files/patch-aa deleted file mode 100644 index f808c5cb9ef5..000000000000 --- a/misc/chord/files/patch-aa +++ /dev/null @@ -1,56 +0,0 @@ ---- ./Makefile.org Tue Apr 25 00:04:52 1995 -+++ ./Makefile Tue Apr 25 00:14:57 1995 -@@ -9,14 +9,14 @@ - - # Use a ansi or K&R compiler - CC = cc --CFLAGS = -D$(PAPERSIZE) -g -+CFLAGS = -D$(PAPERSIZE) -O2 - - # where to put the resulting program --BINDIR = /usr/local/bin -+BINDIR = ${PREFIX}/bin - - # where to put the man page --MANDIR = /usr/man --MANEXT = l -+MANDIR = ${PREFIX}/man -+MANEXT = 1 - - # You should not have to change anything below this line - -@@ -37,7 +37,7 @@ - - a2crd: a2crd.o Makefile - $(CC) $(CFLAGS) -o $@ a2crd.o common.o -- -+ - chord.o : chord.h - common.o : chord.h - grid.o : chord.h -@@ -46,13 +46,14 @@ - toc.o : chord.h - - install : all -- cp $(PROGRAMS) $(BINDIR) -- rm -f $(MANDIR)/cat$(MANEXT)/chord.$(MANEXT) -+ install -c -s $(PROGRAMS) $(BINDIR) - cp chord.man $(MANDIR)/man$(MANEXT)/chord.$(MANEXT) -- chmod 666 $(MANDIR)/man$(MANEXT)/chord.$(MANEXT) -- Cp a2crd.man $(MANDIR)/man$(MANEXT)/a2crd.$(MANEXT) -- chmod 666 $(MANDIR)/man$(MANEXT)/a2crd.$(MANEXT) -- -+ chmod 444 $(MANDIR)/man$(MANEXT)/chord.$(MANEXT) -+ gzip -9nf $(MANDIR)/man$(MANEXT)/chord.$(MANEXT) -+ cp a2crd.man $(MANDIR)/man$(MANEXT)/a2crd.$(MANEXT) -+ chmod 444 $(MANDIR)/man$(MANEXT)/a2crd.$(MANEXT) -+ gzip -9nf $(MANDIR)/man$(MANEXT)/a2crd.$(MANEXT) -+ - shar : $(SRC) - rm -f $(RELNAME).part* - shar -F -L 60 -o $(RELNAME).part $(SRC) $(INCL) $(SONGS) $(DOCS) -@@ -68,4 +69,3 @@ - clean: - rm -f core *.o chord - -- |