From 49684cabcf16b8c294e8156646017193567a7403 Mon Sep 17 00:00:00 2001
From: Guillem Jover <guillem@hadrons.org>
Date: Mon, 15 Apr 2019 03:06:34 +0200
Subject: [PATCH attr 3/8] build: Use LDLIBS instead of LDFLAGS

Otherwise gcc will fail to link the program due to missing
attr_copy_file() symbol.
---
 examples/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/examples/Makefile b/examples/Makefile
index 05c7831..042935a 100644
--- a/examples/Makefile
+++ b/examples/Makefile
@@ -1,5 +1,5 @@
 CFLAGS = -g -Wall
-LDFLAGS = -lattr
+LDLIBS = -lattr
 
 PROGS = copyattr
 
-- 
2.22.0.657.g960e92d24f

