forked from pool/autogen
- Update info files dependencies - Refresh partially upstreamed autogen-build_ldpath.patch - Update to 5.18.5 OBS-URL: https://build.opensuse.org/request/show/308245 OBS-URL: https://build.opensuse.org/package/show/Base:System/autogen?expand=0&rev=33
23 lines
770 B
Diff
23 lines
770 B
Diff
---
|
|
autoopts/Makefile.am | 2 +-
|
|
doc/mk-agen-texi.sh | 6 +++---
|
|
2 files changed, 4 insertions(+), 4 deletions(-)
|
|
|
|
Index: doc/mk-agen-texi.sh
|
|
===================================================================
|
|
--- doc/mk-agen-texi.sh.orig
|
|
+++ doc/mk-agen-texi.sh
|
|
@@ -93,9 +93,9 @@ setup_exports()
|
|
|
|
PATH=${top_builddir}/columns:${PATH}
|
|
timer=`expr ${AG_TIMEOUT} '*' 5`
|
|
- d=`find ${top_builddir}/autoopts -type f -name libopts.a -print`
|
|
- test -f "$d" || die "Cannot locate libopts.a"
|
|
- LIBS="$d ${LIBS}"
|
|
+ d=`find ${top_builddir}/autoopts -type f -name libopts.a -o -name libopts.so | head -n 1`
|
|
+ LIBS="-L$(dirname "$d") -lopts ${LIBS}"
|
|
+ LD_LIBRARY_PATH="$(dirname "$d"):$LD_LIBRARY_PATH"
|
|
|
|
eval `${EGREP} '^AG_[A-Z_]*' ${top_srcdir}/VERSION`
|
|
|