Changeset 621


Ignore:
Timestamp:
Feb 9, 2011, 3:19:54 PM (12 years ago)
Author:
sam
Message:

Some versions of m4 do not honour M4PATH even if claiming to. Manually
add its contents to the aclocal commandline flags.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bootstrap

    r92 r621  
    113113fi
    114114
     115# Honour M4PATH because sometimes M4 doesn't
     116save_IFS=$IFS
     117IFS=:
     118tmp="$M4PATH"
     119for x in "$tmp"; do
     120  if test -n "$x"; then
     121    aclocalflags="${aclocalflags} -I $x"
     122  fi
     123done
     124IFS=$save_IFS
     125
    115126# Explain what we are doing from now
    116127set -x
Note: See TracChangeset for help on using the changeset viewer.