mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Fix gcc compile test with proper flag ordering
This test for libdevmapper was always silently failing because the linker never got the `-ldevmapper` information. Putting the flag last corrects the test. Docker-DCO-1.1-Signed-off-by: Phil Estes <estesp@linux.vnet.ibm.com> (github: estesp)
This commit is contained in:
parent
949e53a0f1
commit
e207645307
1 changed files with 1 additions and 1 deletions
|
@ -137,7 +137,7 @@ fi
|
|||
# functionality.
|
||||
if \
|
||||
command -v gcc &> /dev/null \
|
||||
&& ! ( echo -e '#include <libdevmapper.h>\nint main() { dm_task_deferred_remove(NULL); }'| gcc -xc - -ldevmapper -o /dev/null &> /dev/null ) \
|
||||
&& ! ( echo -e '#include <libdevmapper.h>\nint main() { dm_task_deferred_remove(NULL); }'| gcc -xc - -o /dev/null -ldevmapper &> /dev/null ) \
|
||||
; then
|
||||
DOCKER_BUILDTAGS+=' libdm_no_deferred_remove'
|
||||
fi
|
||||
|
|
Loading…
Add table
Reference in a new issue