Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 650840 | Differences between
and this patch

Collapse All | Expand All

(-)a/configure (-14 / +2 lines)
Lines 22-38 INSTALL_LIB_STATIC=auto Link Here
22
INSTALL_LIB_SHARED=auto
22
INSTALL_LIB_SHARED=auto
23
INSTALL_PKGCONFIGDIR="$PKG_INSTALLDIR"
23
INSTALL_PKGCONFIGDIR="$PKG_INSTALLDIR"
24
24
25
case $(echo -n) in
26
  -n) # SysV style
27
    ECHO_N=
28
    ECHO_C='\c'
29
    ;;
30
  *) # BSD style
31
    ECHO_N='-n '
32
    ECHO_C=
33
    ;;
34
esac
35
36
# display error message and exit
25
# display error message and exit
37
die () {
26
die () {
38
  echo
27
  echo
Lines 235-241 trap remove_tmpdir EXIT Link Here
235
224
236
str_concat()
225
str_concat()
237
{
226
{
238
  echo ${ECHO_N} $@ ${ECHO_C}
227
  printf '%s ' $@
239
}
228
}
240
229
241
yn_nonempty()
230
yn_nonempty()
Lines 246-252 yn_nonempty() Link Here
246
# Use this before starting a check
235
# Use this before starting a check
247
start_check() {
236
start_check() {
248
  echo "============ Checking for $1 ============" >> "$TMPLOG"
237
  echo "============ Checking for $1 ============" >> "$TMPLOG"
249
  echo ${ECHO_N} "Checking for $1 ... ${ECHO_C}"
238
  printf '%s' "Checking for $1 ... "
250
  res_comment=""
239
  res_comment=""
251
}
240
}
252
241
253
- 

Return to bug 650840