Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 201989
Collapse All | Expand All

(-)src-native-new/bin/ACStop.sh (-2 / +8 lines)
Lines 21-30 Link Here
21
export LD_LIBRARY_PATH
21
export LD_LIBRARY_PATH
22
22
23
#
23
#
24
# Bug 175696
24
# Bug 175696, 201989
25
# Make sure TEMP dir is set
25
# Make sure TEMP dir is set
26
#
26
#
27
if [ x$TEMP == x ]; then
27
if [[ -n $TEMP ]]; then
28
	if [[ -d $TEMP ]]; then
29
		echo
30
	else
31
		export TEMP=/tmp
32
	fi
33
else
28
	export TEMP=/tmp
34
	export TEMP=/tmp
29
fi
35
fi
30
36
(-)src-native-new/bin/ACVersion.sh (+14 lines)
Lines 20-25 Link Here
20
export LD_LIBRARY_PATH
20
export LD_LIBRARY_PATH
21
21
22
#
22
#
23
# Bug 175696, 201989
24
# Make sure TEMP dir is set
25
#
26
if [[ -n $TEMP ]]; then
27
	if [[ -d $TEMP ]]; then
28
		echo
29
	else
30
		export TEMP=/tmp
31
	fi
32
else
33
	export TEMP=/tmp
34
fi
35
36
#
23
# Show the version number
37
# Show the version number
24
#
38
#
25
ACServer -v
39
ACServer -v
(-)src-native-new/bin/ACStart.sh (-2 / +8 lines)
Lines 38-47 Link Here
38
export LD_LIBRARY_PATH
38
export LD_LIBRARY_PATH
39
39
40
#
40
#
41
# Bug 175696
41
# Bug 175696, 201989
42
# Make sure TEMP dir is set
42
# Make sure TEMP dir is set
43
#
43
#
44
if [ x$TEMP == x ]; then
44
if [[ -n $TEMP ]]; then
45
	if [[ -d $TEMP ]]; then
46
		echo
47
	else
48
		export TEMP=/tmp
49
	fi
50
else
45
	export TEMP=/tmp
51
	export TEMP=/tmp
46
fi
52
fi
47
53

Return to bug 201989