~ubuntu-branches/ubuntu/trusty/erlang/trusty

« back to all changes in this revision

Viewing changes to erts/etc/win32/cygwin_tools/vc/mc.sh

  • Committer: Bazaar Package Importer
  • Author(s): Clint Byrum
  • Date: 2011-05-05 15:48:43 UTC
  • mfrom: (3.5.13 sid)
  • Revision ID: james.westby@ubuntu.com-20110505154843-0om6ekzg6m7ugj27
Tags: 1:14.b.2-dfsg-3ubuntu1
* Merge from debian unstable.  Remaining changes:
  - Drop libwxgtk2.8-dev build dependency. Wx isn't in main, and not
    supposed to.
  - Drop erlang-wx binary.
  - Drop erlang-wx dependency from -megaco, -common-test, and -reltool, they
    do not really need wx. Also drop it from -debugger; the GUI needs wx,
    but it apparently has CLI bits as well, and is also needed by -megaco,
    so let's keep the package for now.
  - debian/patches/series: Do what I meant, and enable build-options.patch
    instead.
* Additional changes:
  - Drop erlang-wx from -et
* Dropped Changes:
  - patches/pcre-crash.patch: CVE-2008-2371: outer level option with
    alternatives caused crash. (Applied Upstream)
  - fix for ssl certificate verification in newSSL: 
    ssl_cacertfile_fix.patch (Applied Upstream)
  - debian/patches/series: Enable native.patch again, to get stripped beam
    files and reduce the package size again. (build-options is what
    actually accomplished this)
  - Remove build-options.patch on advice from upstream and because it caused
    odd build failures.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
OUTPUT_DIRNAME=""
25
25
 
26
26
# Find the correct mc.exe. This could be done by the configure script,
27
 
# But as we seldom use the resource compiler, it might as well be done here...
 
27
# But as we seldom use the message compiler, it might as well be done here...
28
28
MCC=""
29
29
save_ifs=$IFS
30
30
IFS=:
32
32
    if [ -f $p/mc.exe ]; then 
33
33
        if [ -n "`$p/mc.exe -? 2>&1 >/dev/null </dev/null \
34
34
                 | grep -i \"message compiler\"`" ]; then 
35
 
            MCC=$p/mc.exe
 
35
            MCC=`echo "$p/mc.exe" | sed 's/ /\\\\ /g'`
36
36
        fi
37
37
    fi
38
38
done
68
68
done
69
69
p=$$
70
70
if [ "X$MC_SH_DEBUG_LOG" != "X" ]; then
71
 
    echo rc.sh "$SAVE" >>$MC_SH_DEBUG_LOG
72
 
    echo rc.exe $CMD >>$MC_SH_DEBUG_LOG
 
71
    echo mc.sh "$SAVE" >>$MC_SH_DEBUG_LOG
 
72
    echo mc.exe $CMD >>$MC_SH_DEBUG_LOG
73
73
fi
74
74
if [ -n "$OUTPUT_DIRNAME" ]; then
75
75
    cd $OUTPUT_DIRNAME