Changeset 3159 for trunk/essentials/sys-devel/autoconf-2.13/autoheader.sh
- Timestamp:
- Apr 22, 2007, 2:29:09 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/essentials/sys-devel/autoconf-2.13/autoheader.sh
r3157 r3159 38 38 if test "${LC_CTYPE+set}" = set; then LC_CTYPE=C; export LC_CTYPE; fi 39 39 40 test -z "${AC_MACRODIR}" && AC_MACRODIR=@datadir@ 40 if test -z "${AC_MACRODIR}"; then 41 if test -d "${UNIXROOT}@datadir@"; then 42 AC_MACRODIR=${UNIXROOT}@datadir@ 43 else 44 AC_MACRODIR=@datadir@ 45 fi 46 fi 41 47 test -z "${M4}" && M4=@M4@ 42 48 case "${M4}" in 43 /*) # Handle the case that m4 has moved since we were configured.49 [/\\]*|[a-zA-Z]:*) # Handle the case that m4 has moved since we were configured. 44 50 # It may have been found originally in a build directory. 45 51 test -f "${M4}" || M4=m4 ;; … … 266 272 267 273 if test $# -eq 0; then 274 # bird: OS/2 hack here for missing link counting. 275 exec 2>&1 268 276 if test $status -eq 0; then 269 277 if test -f ${config_h_in} && cmp -s $tmpout ${config_h_in}; then 270 278 rm -f $tmpout # File didn't change, so don't update its mod time. 271 279 else 272 mv -f $tmpout ${config_h_in} 280 # bird: Do a copy just to be on the safe side. 281 cp -f $tmpout ${config_h_in} 282 rm -f $tmpout 273 283 fi 274 284 else
Note:
See TracChangeset
for help on using the changeset viewer.