mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-18 14:17:03 +01:00
2002-09-04 Neal H. Walfield <neal@g10code.de>
* Makefile.am (inittests.stamp): Do not set LD_LIBRARY_PATH, but rather prepend it. Be more robust and prefer printf over echo -n.
This commit is contained in:
parent
cfca45dcd5
commit
f27e05f3aa
@ -1,3 +1,8 @@
|
|||||||
|
2002-09-04 Neal H. Walfield <neal@g10code.de>
|
||||||
|
|
||||||
|
* Makefile.am (inittests.stamp): Do not set LD_LIBRARY_PATH, but
|
||||||
|
rather prepend it. Be more robust and prefer printf over echo -n.
|
||||||
|
|
||||||
2002-09-04 Marcus Brinkmann <marcus@g10code.de>
|
2002-09-04 Marcus Brinkmann <marcus@g10code.de>
|
||||||
|
|
||||||
* asschk.c (start_server): Close the parent's file descriptors in
|
* asschk.c (start_server): Close the parent's file descriptors in
|
||||||
@ -5,7 +10,7 @@
|
|||||||
(read_assuan): Variable NREAD removed. Cut off the received line
|
(read_assuan): Variable NREAD removed. Cut off the received line
|
||||||
currectly if more than one line was read.
|
currectly if more than one line was read.
|
||||||
|
|
||||||
2002-09-03 Neal H. Walfield <neal@cs.uml.edu>
|
2002-09-03 Neal H. Walfield <neal@g10code.de>
|
||||||
|
|
||||||
* Makefile.am (inittests.stamp): Construct an LD_LIBRARY_PATH from
|
* Makefile.am (inittests.stamp): Construct an LD_LIBRARY_PATH from
|
||||||
LDFLAGS.
|
LDFLAGS.
|
||||||
|
@ -62,11 +62,17 @@ inittests.stamp: inittests
|
|||||||
then \
|
then \
|
||||||
seen=1; \
|
seen=1; \
|
||||||
else \
|
else \
|
||||||
echo -n ":"; \
|
printf ":"; \
|
||||||
fi; \
|
fi; \
|
||||||
echo -n $${i} | sed 's/^-L//'; \
|
printf "%s" "$${i}" | sed 's/^-L//'; \
|
||||||
fi; \
|
fi; \
|
||||||
done) \
|
done; \
|
||||||
|
if test $$seen != 0 \
|
||||||
|
&& test x$${LD_LIBRARY_PATH} != x; \
|
||||||
|
then \
|
||||||
|
printf ":"; \
|
||||||
|
fi; \
|
||||||
|
printf "%s" "$${LD_LIBRARY_PATH}") \
|
||||||
srcdir=$(srcdir) $(TESTS_ENVIRONMENT) $(srcdir)/inittests
|
srcdir=$(srcdir) $(TESTS_ENVIRONMENT) $(srcdir)/inittests
|
||||||
echo timestamp >./inittests.stamp
|
echo timestamp >./inittests.stamp
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user