~ubuntu-branches/ubuntu/vivid/nettle/vivid-proposed

« back to all changes in this revision

Viewing changes to examples/setup-env

  • Committer: Package Import Robot
  • Author(s): Magnus Holmgren
  • Date: 2013-05-04 19:50:28 UTC
  • mfrom: (1.4.6) (3.1.11 experimental)
  • mto: This revision was merged to the branch mainline in revision 14.
  • Revision ID: package-import@ubuntu.com-20130504195028-fp6c9fw1tsm5scwa
Tags: 2.7-1
* New upstream release (Closes: #706081).
* Include watch file improvements from Bart Martens <bartm@debian.org>
  via the QA system.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
set -e
4
4
 
5
 
if [ -x rsa-keygen ] ; then
6
 
  ./rsa-keygen -r rsa-decrypt -o testkey || exit 1
 
5
# Workaround, it seems difficult to convince wine to put ../lib into PATH.
 
6
case "$EMULATOR" in
 
7
    wine*)
 
8
        for f in ../.lib/*.dll ; do
 
9
          ln -sf "$f" .
 
10
        done
 
11
        ;;
 
12
esac
 
13
 
 
14
if [ -x rsa-keygen$EXEEXT ] ; then
 
15
  $EMULATOR ./rsa-keygen -r rsa-decrypt$EXEEXT -o testkey || exit 1
7
16
fi