File: getfem-config-notinstalled.in

package info (click to toggle)
getfem%2B%2B 5.1%2Bdfsg1-4
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 32,668 kB
  • ctags: 20,930
  • sloc: cpp: 110,660; ansic: 72,312; python: 6,064; sh: 3,608; perl: 1,710; makefile: 1,343
file content (9 lines) | stat: -rw-r--r-- 219 bytes parent folder | download | duplicates (4)
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