mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-22 11:04:51 -04:00
29 lines
765 B
Plaintext
29 lines
765 B
Plaintext
$NetBSD: patch-ac,v 1.3 2011/12/18 18:18:50 dholland Exp $
|
|
|
|
- honor LDFLAGS
|
|
- DESTDIR support
|
|
- let the pkgsrc makefile handle the permissions
|
|
|
|
--- build/Makefile.in.orig 1998-08-12 14:31:56.000000000 +0000
|
|
+++ build/Makefile.in
|
|
@@ -17,7 +17,7 @@ OBJS= main.o scrn.o log.o binlog.o uucpl
|
|
all: snooper
|
|
|
|
snooper: $(OBJS)
|
|
- $(CC) -o snooper $(OBJS) @LIBS@
|
|
+ $(CC) $(LDFLAGS) -o snooper $(OBJS) @LIBS@
|
|
|
|
main.o: ../src/main.c
|
|
scrn.o: ../src/scrn.c
|
|
@@ -29,8 +29,8 @@ depend:
|
|
mkdep ${CFLAGS:M-[ID]*} $(srcdir)/src/*.c
|
|
|
|
install:
|
|
- [ -d $(bindir) ] || (mkdir $(bindir))
|
|
- $(INSTALL) -s -o uucp -g bin -m 4555 snooper $(bindir)
|
|
+ [ -d $(DESTDIR)$(bindir) ] || (mkdir $(DESTDIR)$(bindir))
|
|
+ $(INSTALL) -s snooper $(DESTDIR)$(bindir)
|
|
|
|
clean:
|
|
-rm -f *.o *.core
|