~ubuntu-branches/ubuntu/vivid/psicode/vivid

« back to all changes in this revision

Viewing changes to bin/host.sh

  • 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:
1
 
#!/bin/sh
2
 
#
3
 
# This script guesses the system id string in the same way configure does
4
 
# Provided for use in scripts that have something to do with PSI3
5
 
#
6
 
# Center for Computational Quantum Chemistry,
7
 
# University of Georgia,
8
 
# Athens, GA
9
 
# February 2000
10
 
 
11
 
#
12
 
# First try config.guess
13
 
# config.guess is free software provided with GNU autoconf
14
 
#
15
 
script_dir=`dirname $0`
16
 
if [ -x $script_dir/config.guess ]; then
17
 
   target=`$script_dir/config.guess`
18
 
fi
19
 
if [ -x $script_dir/config.local ]; then
20
 
   target=`$script_dir/config.local $target`
21
 
fi
22
 
 
23
 
echo $target