Changeset 464c6d


Ignore:
Timestamp:
Apr 24, 2008, 11:16:08 AM (18 years ago)
Author:
Frederik Heber <heber@…>
Children:
c9b32a
Parents:
76b3dc
Message:

script files have paths (for bin programs used inside) now written into by automake

We use $prefix@ and alikes to put the correct path into it. Though, it's a bit of a pain as @bindir@ is not replaced with an absolute path but with ${exec_prefix}/bindir, which is not helping very much ... (exec_prefix=@prefix@ then helps)

Location:
util
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • util/Makefile.am

    r76b3dc r464c6d  
    3131        meas2pdb.sh \
    3232        Nanotubes.pl \
    33         ReSequenceDX.pl
     33        ReSequenceDX.pl \
     34        test.sh
    3435
    3536bin_SCRIPTS = ${scripts}
  • util/configure.ac

    r76b3dc r464c6d  
    3030AC_FUNC_REALLOC
    3131AC_CHECK_FUNCS([pow sqrt strchr strrchr strstr])
    32 AC_CONFIG_FILES([Makefile doc/Makefile Nanotubes.pl ReSequenceDX.pl])
     32AC_CONFIG_FILES([Makefile doc/Makefile])
     33AC_CONFIG_FILES([CreateFromXYZ.sh dynamicANOVA.sh Nanotubes.pl ReSequenceDX.pl])
    3334AC_OUTPUT
  • util/dynamicANOVA.sh.in

    r76b3dc r464c6d  
    55MPIRUN="/opt/packages/mpichgm-1.2.7..15/bin/mpirun.ch_gm"
    66#MPIRUN="/usr/bin/mpirun.mpich"
    7 exec_prefix=@prefix@
    8 MOLECUILDER=@bindir@/molecuilder
    9 JOINER=@bindir@/joiner
    10 PCP=@bindir@/pcp
     7exec_prefix="@prefix@"
     8MOLECUILDER="@bindir@/molecuilder"
     9JOINER="@bindir@/joiner"
     10PCP="@bindir@/pcp"
    1111
    1212function check {
Note: See TracChangeset for help on using the changeset viewer.