[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Acl-devel] [PATCH attr 3/8] build: Use LDLIBS instead of LDFLAGS
From: |
Guillem Jover |
Subject: |
[Acl-devel] [PATCH attr 3/8] build: Use LDLIBS instead of LDFLAGS |
Date: |
Sat, 20 Jul 2019 04:14:37 +0200 |
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
- [Acl-devel] [PATCH attr 0/8] Assorted fixes, Guillem Jover, 2019/07/20
- [Acl-devel] [PATCH attr 5/8] examples: Check "user." as a prefix not as the entire string, Guillem Jover, 2019/07/20
- [Acl-devel] [PATCH attr 6/8] man: Fix various typos, Guillem Jover, 2019/07/20
- [Acl-devel] [PATCH attr 8/8] po: Update Dutch translation, Guillem Jover, 2019/07/20
- [Acl-devel] [PATCH attr 4/8] Ignore examples/copyattr, Guillem Jover, 2019/07/20
- [Acl-devel] [PATCH attr 1/8] build: Fix for incompatibility with autoconf 2.13, Guillem Jover, 2019/07/20
- [Acl-devel] [PATCH attr 7/8] build: Only include the compat syscall stubs on Linux systems, Guillem Jover, 2019/07/20
- [Acl-devel] [PATCH attr 2/8] build: Do not assume we have a config.h header around, Guillem Jover, 2019/07/20
- [Acl-devel] [PATCH attr 3/8] build: Use LDLIBS instead of LDFLAGS,
Guillem Jover <=