From 39ffe71bcba205c39ebf236d46d9f5a4be021664 Mon Sep 17 00:00:00 2001 From: "Kelvin M. Klann" Date: Thu, 5 May 2022 21:31:38 -0300 Subject: makefiles: remove unused BINOBJS variable It is unclear what its intended purpose would be. Example: $ cat Makefile OBJS = a b c BINOBJS = $(foreach file, $(OBJS), $file) all: printf '"%s"\n' "$(BINOBJS)" $ make printf '"%s"\n' " ile ile ile" " ile ile ile" Added on commit 137985136 ("Baseline firejail 0.9.28", 2015-08-08). --- src/libpostexecseccomp/Makefile | 1 - 1 file changed, 1 deletion(-) (limited to 'src/libpostexecseccomp') diff --git a/src/libpostexecseccomp/Makefile b/src/libpostexecseccomp/Makefile index 5386af58b..42b96c0e6 100644 --- a/src/libpostexecseccomp/Makefile +++ b/src/libpostexecseccomp/Makefile @@ -4,7 +4,6 @@ ROOT = ../.. H_FILE_LIST = $(sort $(wildcard *.h)) C_FILE_LIST = $(sort $(wildcard *.c)) OBJS = $(C_FILE_LIST:.c=.o) -BINOBJS = $(foreach file, $(OBJS), $file) CFLAGS += -ggdb $(HAVE_FATAL_WARNINGS) -O2 -DVERSION='"$(VERSION)"' -fstack-protector-all -D_FORTIFY_SOURCE=2 -fPIC -Wformat -Wformat-security LDFLAGS += -pie -fPIE -Wl,-z,relro -Wl,-z,now -- cgit v1.2.3-54-g00ecf