blob: b7cc3764320900f0dabf8fbc2c148c3ea0f9d8ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
Author: Ole Streicher <debian@liska.ath.cx>
Description: Run compilation in foreground and write log to stdout
instead of a file.
--- a/install/unix/install3
+++ b/install/unix/install3
@@ -112,8 +112,6 @@
echo ""
echo "WARNING: MIDAS installation will delete all dependent files."
-echo " It will run in background and the output will be sent to"
-echo " the file <$MID_HOME/tmp/install.$$>"
echo ""
echo "Do you want to continue [yn]? (y): " $SV_NONL
unset answ
@@ -138,17 +136,9 @@
# do we have the 'time' command?
if [ $CMND_YES = 2 ] ; then
- /bin/bash $MID_INSTALL/install -i > $MID_HOME/tmp/install.$$ 2>&1 &
+ /bin/bash $MID_INSTALL/install -i
else
- time /bin/bash $MID_INSTALL/install -i > $MID_HOME/tmp/install.$$ 2>&1 &
+ time /bin/bash $MID_INSTALL/install -i
fi
-echo "Running install in background"
-echo "Results are coming in $MID_HOME/tmp/install.$$"
-if [ "$1" = "-a" ]; then
- echo "Waiting for MIDAS installation to finish..." $SV_NONL
- wait
- echo "Finished."
- echo ""
-fi
exit 0
--- a/lib/makefile
+++ b/lib/makefile
@@ -18,7 +18,7 @@
include ../local/default.mk
-DEV_NULL = >/dev/null 2>&1
+DEV_NULL =
LIBMIDAS = $(LIBDIR)/libmidas.a
LIBGMIDAS = $(LIBDIR)/libgmidas.a
--- a/system/ftoc/makefile
+++ b/system/ftoc/makefile
@@ -12,7 +12,7 @@
include ../../local/default.mk
DEV_NULL= >/dev/null 2>&1
-# DEV_NULL=
+DEV_NULL=
M = ../exec
--- a/system/machine/makefile
+++ b/system/machine/makefile
@@ -16,7 +16,7 @@
include ../../local/default.mk
-DEV_NULL= >/dev/null 2>&1
+DEV_NULL=
M = ../exec
|