summaryrefslogtreecommitdiff
path: root/net/hsflowd/files/patch-src_FreeBSD_Makefile
blob: 7db06ec2c9bfa43d092adbd7d1c6e482db213b4a (plain) (blame)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
--- src/FreeBSD/Makefile.orig	2017-03-13 18:07:09 UTC
+++ src/FreeBSD/Makefile
@@ -1,22 +1,22 @@
 # This software is distributed under the following license:
 # http://host-sflow.sourceforge.net/license.html
 
-.if empty $(BINDIR)
+.if empty(BINDIR)
    BINDIR=/usr/sbin
 .endif
 
-.if empty $(INITDIR)
+.if empty(INITDIR)
    INITDIR=/etc/rc.d
 .endif
 
-.if empty $(CONFDIR)
+.if empty(CONFDIR)
    CONFDIR=/etc
 .endif
 
 INSTALL=install
 
 # INSTROOT may be passed in, e.g. RPM_BUILD_ROOT
-.if empty $(INSTROOT)
+.if empty(INSTROOT)
   BIN_D=$(BINDIR)
   INIT_D=$(INITDIR)
   CONF_D=$(CONFDIR)
@@ -36,7 +36,7 @@ CC= gcc -std=gnu99
 OPT_FULL = -O3 -DNDEBUG
 OPT_DEBUG = -g -ggdb
 
-.if empty $(OPT)
+.if empty(OPT)
   OPT=$(OPT_FULL)
 .endif