Makefile: allow user set LDFLAGS for libbtrfs.so as well
Detected by gentoo's QA checker: * QA Notice: Files built without respecting LDFLAGS have been detected * Please include the following list of files in your report: * /usr/lib/libbtrfs.so.0.1 Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
This commit is contained in:
parent
87c09f70b5
commit
cf7e3472d7
3
Makefile
3
Makefile
|
@ -93,7 +93,8 @@ version.h:
|
||||||
|
|
||||||
$(libs_shared): $(libbtrfs_objects) $(lib_links) send.h
|
$(libs_shared): $(libbtrfs_objects) $(lib_links) send.h
|
||||||
@echo " [LD] $@"
|
@echo " [LD] $@"
|
||||||
$(Q)$(CC) $(CFLAGS) $(libbtrfs_objects) $(lib_LIBS) -shared -Wl,-soname,libbtrfs.so -o libbtrfs.so.0.1
|
$(Q)$(CC) $(CFLAGS) $(libbtrfs_objects) $(LDFLAGS) $(lib_LIBS) \
|
||||||
|
-shared -Wl,-soname,libbtrfs.so -o libbtrfs.so.0.1
|
||||||
|
|
||||||
$(libs_static): $(libbtrfs_objects)
|
$(libs_static): $(libbtrfs_objects)
|
||||||
@echo " [AR] $@"
|
@echo " [AR] $@"
|
||||||
|
|
Loading…
Reference in New Issue