mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-21 00:25:50 +00:00
Second attempt to fix build on 11.0-CURRENT.
This commit is contained in:
parent
e445944ac6
commit
3e77d628c9
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=362497
@ -19,6 +19,8 @@ WRKSRC= ${WRKDIR}/${PORTNAME}
|
||||
|
||||
PLIST_FILES= bin/aamath man/man1/aamath.1.gz
|
||||
|
||||
CFLAGS+= -I${LOCALBASE}/include
|
||||
|
||||
do-install:
|
||||
${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
|
||||
${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MANPREFIX}/man/man1
|
||||
|
@ -1,5 +1,5 @@
|
||||
--- Makefile.orig
|
||||
+++ Makefile
|
||||
--- ./Makefile.orig 2005-06-22 22:12:18.000000000 +0200
|
||||
+++ ./Makefile 2014-07-22 01:12:20.000000000 +0200
|
||||
@@ -1,17 +1,22 @@
|
||||
-CXX = g++
|
||||
-LD = g++
|
||||
@ -14,7 +14,8 @@
|
||||
LIBS = -lreadline -ltermcap
|
||||
|
||||
$(TARGET): $(OBJS)
|
||||
$(LD) $(LFLAGS) $(OBJS) -o $@ $(LIBS)
|
||||
- $(LD) $(LFLAGS) $(OBJS) -o $@ $(LIBS)
|
||||
+ $(LD) $(LDFLAGS) $(OBJS) -o $@ $(LIBS)
|
||||
|
||||
-parser.cc parser.h: parser.y
|
||||
- yacc -d parser.y && mv y.tab.c parser.cc && mv y.tab.h parser.h
|
||||
|
Loading…
Reference in New Issue
Block a user