Codebase list getfem++ / debian/4.1.1-6 getfem-config-notinstalled.in
debian/4.1.1-6

Tree @debian/4.1.1-6 (Download .tar.gz)

getfem-config-notinstalled.in @debian/4.1.1-6raw · history · blame

1
2
3
4
5
6
7
8
9
#!/bin/sh
getfemconf=`echo $0 | sed -e s/-notinstalled//`
if [ -x $getfemconf ]; then
    exec $getfemconf --src $*
else
    echo "$getfemconf not executable!"
    echo "please, do a chmod +x $getfemconf"
    exit 1
fi