diff options
author | Steve Price <steve@FreeBSD.org> | 2000-12-11 02:26:55 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 2000-12-11 02:26:55 +0000 |
commit | a1db0ee8c5a4a43cb3ad7faa0fd7aa681115f3e9 (patch) | |
tree | 7e22814ef82eebd99429a981b2b69dee0cbb06cf /devel/gputils/files/patch-aa | |
parent | Fix compilation on newer versions of -current. (diff) |
Update to version 0.8.10.
PR: 23127
Submitted by: maintainer
Notes
Notes:
svn path=/head/; revision=35847
Diffstat (limited to 'devel/gputils/files/patch-aa')
-rw-r--r-- | devel/gputils/files/patch-aa | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/devel/gputils/files/patch-aa b/devel/gputils/files/patch-aa deleted file mode 100644 index 298715c53127..000000000000 --- a/devel/gputils/files/patch-aa +++ /dev/null @@ -1,48 +0,0 @@ ---- Makefile.in.orig Fri Aug 4 13:51:41 2000 -+++ Makefile.in Fri Aug 4 13:53:45 2000 -@@ -20,8 +20,14 @@ - - all: gpasm - --DATADIR = @prefix@/gpasm --CFLAGS = @CFLAGS@ -D DATADIR=\"$(DATADIR)\" # -g --pedantic -Wall -+prefix = @prefix@ -+CFLAGS = @CFLAGS@ -DDATADIR=\"$(DATADIR)\" # -g --pendantic -Wall -+LIBS = @LIBS@ -+YACC = @YACC@ -+LEX = @LEX@ -+INSTALL = @INSTALL@ -+ -+DATADIR = $(prefix)/gpasm - SHELL = /bin/sh - - # All the objects, in alphabetical order -@@ -39,23 +46,23 @@ - util.o - - gpasm: $(OBJECTS) -- $(CC) -o gpasm $(OBJECTS) @LIBS@ -+ $(CC) -o gpasm $(OBJECTS) $(LIBS) - - gpasm.tab.c gpasm.tab.h: gpasm.y -- @YACC@ -d gpasm.y -+ $(YACC) -d gpasm.y - mv y.tab.c gpasm.tab.c - mv y.tab.h gpasm.tab.h - - scan.c: scan.l gpasm.tab.h -- @LEX@ scan.l -+ $(LEX) scan.l - mv lex.yy.c scan.c - - ######################################################################## - - install: -- @INSTALL@ -m 755 gpasm @prefix@/bin -+ $(INSTALL) -m 755 gpasm $(prefix)/bin - mkdir -m 755 -p $(DATADIR) -- @INSTALL@ -m 644 special.inc $(DATADIR)/special.inc -+ $(INSTALL) -m 644 special.inc $(DATADIR)/special.inc - - ######################################################################## - |