If we found an external libroken when configuring, we were not setting
LIB_roken if --with-roken=DIR was not specified. Set LIB_roken when we
find a libroken without --with-roken=DIR.
Change-Id: I927647a14f4c5cd8925f0e719b0a9b4164584571
Reviewed-on: http://gerrit.openafs.org/4376
Tested-by: BuildBot <buildbot@rampaginggeek.com>
Reviewed-by: Derrick Brashear <shadow@dementia.org>
AS_IF([test x"$roken_foundlib" = xtrue && test x"$roken_foundheader" = xtrue],
[AS_IF([test x"$roken_path" != x],
[CPPFLAGS_roken="-I$roken_path/include"
- LDFLAGS_roken="-L$roken_path/lib"
- LIB_roken="-lroken"])
+ LDFLAGS_roken="-L$roken_path/lib"])
+ LIB_roken="-lroken"
$2],
[$3])
])