~ubuntu-branches/ubuntu/precise/psicode/precise

« back to all changes in this revision

Viewing changes to src/bin/input/io.c

  • Committer: Bazaar Package Importer
  • Author(s): Michael Banck
  • Date: 2008-06-07 16:49:57 UTC
  • mfrom: (2.1.2 hardy)
  • Revision ID: james.westby@ubuntu.com-20080607164957-8pifvb133yjlkagn
Tags: 3.3.0-3
* debian/rules (DEB_MAKE_CHECK_TARGET): Do not abort test suite on
  failures.
* debian/rules (DEB_CONFIGURE_EXTRA_FLAGS): Set ${bindir} to /usr/lib/psi.
* debian/rules (install/psi3): Move psi3 file to /usr/bin.
* debian/patches/07_464867_move_executables.dpatch: New patch, add
  /usr/lib/psi to the $PATH, so that the moved executables are found.
  (closes: #464867)
* debian/patches/00list: Adjusted.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
  int num_extra_args = 0;
16
16
  char **extra_args;
17
17
  extra_args = (char **) malloc(argc*sizeof(char *));
18
 
  
 
18
 
 
19
  keep_chkpt = 0;  
19
20
  read_chkpt = 0;
20
21
  chkpt_mos = 0;
21
22
  chkpt_geom = 0; 
66
67
    else if (strcmp(argv[i], "--noreorient") == 0) {
67
68
      no_reorient = 1;
68
69
    }
 
70
    else if (strcmp(argv[i], "--keepchkpt") == 0) {
 
71
      keep_chkpt = 1;
 
72
    }
69
73
    else {
70
74
      extra_args[num_extra_args++] = argv[i];
71
75
    }