From: Ulrich Drepper Date: Mon, 12 Jun 2000 18:59:22 +0000 (+0000) Subject: (%.out): Define GCONV_PATH in the environment. X-Git-Tag: cvs/glibc_2-1-91~235 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a21cd9d19337a272b5ae311b26b470b42f3a6e53;p=thirdparty%2Fglibc.git (%.out): Define GCONV_PATH in the environment. --- diff --git a/Rules b/Rules index d5cd34e65a4..1ccc0276947 100644 --- a/Rules +++ b/Rules @@ -119,9 +119,11 @@ ifneq "$(strip $(tests) $(test-srcs))" "" # These are the implicit rules for making test outputs # from the test programs and whatever input files are present. $(objpfx)%.out: %.input $(objpfx)% - $($*-ENV) $(built-program-cmd) $($*-ARGS) < $(word 1,$^) > $@ + GCONV_PATH=$(common-objpfx)iconvdata \ + $($*-ENV) $(built-program-cmd) $($*-ARGS) < $(word 1,$^) > $@ $(objpfx)%.out: /dev/null $(objpfx)% # Make it 2nd arg for canned sequence. - $($*-ENV) $(built-program-cmd) $($*-ARGS) > $@ + GCONV_PATH=$(common-objpfx)iconvdata \ + $($*-ENV) $(built-program-cmd) $($*-ARGS) > $@ endif # tests .PHONY: distclean realclean subdir_distclean subdir_realclean \