source: anuga_core/source/pymetis/pymetis/get_module @ 6860

Last change on this file since 6860 was 2100, checked in by jack, 19 years ago

Update that recognises that win32 distutils build .pyd extentions

  • Property svn:executable set to *
File size: 284 bytes
Line 
1#!/bin/bash
2
3cd build
4for X in $(ls -d lib.*)
5  do
6  cd ${X}
7  if [ -f metis.so ]
8      then
9      cp metis.so ../../../ -pf
10      echo 'Found metis.so in' ${X}
11  elif [ -f metis.pyd ]
12      then
13      cp metis.pyd ../../../ -pf
14      echo 'Found metis.pyd in' ${X}
15  fi
16  cd ..
17done
Note: See TracBrowser for help on using the repository browser.