blob: fceedbcc43581a7f5525f58482833ee519309fcc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
$NetBSD: patch-aa,v 1.5 1999/12/26 00:02:15 wiz Exp $
--- Makefile.in.orig Sun Jul 4 01:56:20 1999
+++ Makefile.in Mon Jul 5 03:52:24 1999
@@ -6,8 +6,8 @@
#doesn't seem to hurt anything if its defined even with the new readline
CXXFLAGS+=-DOLD_READLINE
-CXX=@CXX@
-LIBS=@LIBS@
+CXX= @CXX@ -I${LOCALBASE}/include
+LIBS= -L${LOCALBASE}/lib -Wl,-R${LOCALBASE}/lib @LIBS@
prefix=@prefix@
exec_prefix=@exec_prefix@
@@ -28,8 +28,8 @@
$(CXX) -MM *.cc > .depend
install: all
- $(install) -s -o root -g bin -m 0755 id3ed $(DESTDIR)$(bindir)
- $(install) -o root -g bin -m 0644 id3ed.1 $(DESTDIR)$(mandir)/man1
+ ${BSD_INSTALL_PROGRAM} id3ed $(DESTDIR)$(bindir)
+ ${BSD_INSTALL_MAN} id3ed.1 $(DESTDIR)$(mandir)/man1
uninstall:
-rm $(DESTDIR)$(bindir)/id3ed
|