28 lines
750 B
Plaintext
28 lines
750 B
Plaintext
|
Description: Fix Lintian hardening errors caused by flags not being passed to compiler,
|
||
|
use debhelper compiler flags
|
||
|
Author: Dave Hibberd <d@vehibberd.com>
|
||
|
Last-Update: 2016-04-05
|
||
|
|
||
|
--- a/Makefile.in
|
||
|
+++ b/Makefile.in
|
||
|
@@ -3,8 +3,8 @@
|
||
|
CC = gcc
|
||
|
LD = gcc
|
||
|
# CFLAGS = -O2 -g -s -Wstrict-prototypes
|
||
|
-CFLAGS = -O2 -g -Wno-unused-result -Wstrict-prototypes
|
||
|
-LDFLAGS =
|
||
|
+#CFLAGS = -O2 -g -Wno-unused-result -Wstrict-prototypes
|
||
|
+#LDFLAGS =
|
||
|
LIBS = -lax25 -lax25io
|
||
|
|
||
|
include Makefile.include
|
||
|
@@ -24,7 +24,7 @@
|
||
|
DIGI_OBJS = $(DIGI_SRC:.c=.o)
|
||
|
CALIBRATE_OBJS = $(CALIBRATE_SRC:.c=.o)
|
||
|
.c.o:
|
||
|
- $(CC) $(CFLAGS) -c $<
|
||
|
+ $(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -c $<
|
||
|
|
||
|
install: installbin installman installhelp installconf
|
||
|
install -b -m 755 -D -d $(VAR_DIR)
|