summaryrefslogtreecommitdiff
path: root/sysutils/neb-wipe/patches/patch-Makefile
blob: aa6cddd193a5e7127503e89daf393913ceb9531b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
$NetBSD: patch-Makefile,v 1.1 2021/08/13 15:41:23 wiz Exp $

Honor LDFLAGS.

--- Makefile.orig	2005-02-27 18:12:00.000000000 +0000
+++ Makefile
@@ -7,7 +7,7 @@ LIBS?=-lutil
 all: neb-wipe
 
 neb-wipe: neb-wipe.o
-	$(CC) $(CFLAGS) -o neb-wipe $(LIBS) neb-wipe.o
+	$(CC) $(CFLAGS) $(LDFLAGS) -o neb-wipe $(LIBS) neb-wipe.o
 	
 neb-wipe.o: neb-wipe.c
 	$(CC) $(CFLAGS) -c neb-wipe.c