diff options
author | DongHun Kwak <dh0128.kwak@samsung.com> | 2017-10-17 14:50:30 +0900 |
---|---|---|
committer | DongHun Kwak <dh0128.kwak@samsung.com> | 2017-10-17 14:50:42 +0900 |
commit | 2fc5ced0b429ea2b81ded947cfcb85d98112ad87 (patch) | |
tree | b3a8e0ec8a3f8ac57adf89b7edf453ddaca8fb7a /xsltproc | |
parent | effb43a066e70763fa89eb7142b7cb7b428694ad (diff) | |
download | libxslt-2fc5ced0b429ea2b81ded947cfcb85d98112ad87.tar.gz libxslt-2fc5ced0b429ea2b81ded947cfcb85d98112ad87.tar.bz2 libxslt-2fc5ced0b429ea2b81ded947cfcb85d98112ad87.zip |
Imported Upstream version 1.1.30_rc1upstream/1.1.30_rc1
Change-Id: Ie087e3508369ac612459f31961addc691f2302c1
Signed-off-by: DongHun Kwak <dh0128.kwak@samsung.com>
Diffstat (limited to 'xsltproc')
-rw-r--r-- | xsltproc/Makefile.am | 2 | ||||
-rw-r--r-- | xsltproc/Makefile.in | 5 |
2 files changed, 5 insertions, 2 deletions
diff --git a/xsltproc/Makefile.am b/xsltproc/Makefile.am index ad1c3dce..1a8804fc 100644 --- a/xsltproc/Makefile.am +++ b/xsltproc/Makefile.am @@ -41,4 +41,4 @@ xsltproc.dv: xsltproc.o tests: testThreads @echo > .memdump @echo '## Running testThreads' - @($(CHECKER) ./testThreads ; grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0" || true) + @($(CHECKER) ./testThreads > /dev/null; grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0" || true) diff --git a/xsltproc/Makefile.in b/xsltproc/Makefile.in index 15fb77bb..1e3873c8 100644 --- a/xsltproc/Makefile.in +++ b/xsltproc/Makefile.in @@ -274,6 +274,9 @@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PERL = @PERL@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ PYTHON = @PYTHON@ PYTHONSODV = @PYTHONSODV@ PYTHON_INCLUDES = @PYTHON_INCLUDES@ @@ -742,7 +745,7 @@ xsltproc.dv: xsltproc.o tests: testThreads @echo > .memdump @echo '## Running testThreads' - @($(CHECKER) ./testThreads ; grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0" || true) + @($(CHECKER) ./testThreads > /dev/null; grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0" || true) # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. |