~ubuntu-branches/ubuntu/lucid/erlang/lucid

« back to all changes in this revision

Viewing changes to lib/stdlib/test/escript_SUITE_data/emulator_flags

  • Committer: Elliot Murphy
  • Date: 2009-12-22 02:56:21 UTC
  • mfrom: (3.3.5 sid)
  • Revision ID: elliot@elliotmurphy.com-20091222025621-qv3rja8gbpiabkbe
Tags: 1:13.b.3-dfsg-2ubuntu1
* Merge with Debian testing; remaining Ubuntu changes:
  - Drop libwxgtk2.8-dev build dependency. Wx isn't in main, and not
    supposed to. (LP #438365)
  - 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.
* Fixed dialyzer(1) manpage which was placed into section 3 and conflicted
  with dialyzer(3erl).
* New upstream release (it adds a new binary package erlang-erl-docgen).
* Refreshed patches, removed most of emacs.patch which is applied upstream.
* Linked run_test binary from erlang-common-test package to /usr/bin.
* Fixed VCS headers in debian/control.
* Moved from prebuilt manpages to generated from sources. This adds
  erlang-manpages binary package and xsltproc build dependency.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /usr/bin/env escript
 
2
%% -*- erlang -*-
 
3
%%! -nostick -mnesia dir a/directory -mnesia debug verbose
 
4
 
 
5
main(MainArgs) ->
 
6
    io:format("main:~p\n",[MainArgs]),
 
7
    ErlArgs = init:get_arguments(),
 
8
    io:format("nostick:~p\n",[[E || E <- ErlArgs, element(1, E) =:= nostick]]),
 
9
    io:format("mnesia:~p\n", [[E || E <- ErlArgs, element(1, E) =:= mnesia]]),
 
10
    io:format("ERL_FLAGS=~p\n", [os:getenv("ERL_FLAGS")]),
 
11
    io:format("unknown:~p\n",[[E || E <- ErlArgs, element(1, E) =:= unknown]]).