File tree Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Original file line number Diff line number Diff line change 43
43
# ## somebody smart could peek into the .tgz. ... MEH
44
44
if [ -d " $EXTRACTED_AS " ]; then rm -r " $EXTRACTED_AS " ; fi
45
45
tar xzf " $LOCAL "
46
- pushd " $EXTRACTED_AS "
46
+ pushd " $EXTRACTED_AS " > /dev/null
47
47
mkdir build
48
- pushd build
48
+ pushd build > /dev/null
49
49
cmake --version >&2
50
- cmake -DCMARK_TESTS=OFF -DCMARK_STATIC=OFF ..
51
- make
52
- popd
50
+ {
51
+ cmake -DCMARK_TESTS=OFF -DCMARK_STATIC=OFF ..
52
+ make
53
+ } > build.log
54
+ popd > /dev/null
53
55
54
56
mkdir lib
55
57
cp -Pp build/src/lib* lib/
56
58
cp -Pp build/extensions/lib* lib/
57
- popd
59
+ popd > /dev/null
58
60
59
61
# These files/dir may need a reference with LD_LIBRARY_PATH.
60
62
# gfm.py wants this lib/ in LIBCMARKDIR.
61
- ls -laF " $EXTRACTED_AS /lib/"
63
+ # ls -laF "$EXTRACTED_AS/lib/"
62
64
63
65
# Provide a handy line for copy/paste.
64
66
echo " export LIBCMARKDIR='$( pwd) /$EXTRACTED_AS /lib'"
You can’t perform that action at this time.
0 commit comments