Changeset 3126 for trunk


Ignore:
Timestamp:
Apr 15, 2007, 9:33:12 PM (18 years ago)
Author:
bird
Message:

merged OS/2 changes.

Location:
trunk/essentials/sys-devel/automake-1.4
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/essentials/sys-devel/automake-1.4/aclocal.in

    r3124 r3126  
    3232$APIVERSION = "@APIVERSION@";
    3333$PACKAGE = "@PACKAGE@";
    34 $prefix = "@prefix@";
     34$prefix = $ENV{'UNIXROOT'}."@prefix@";
    3535# Note that this isn't pkgdatadir, but a separate directory.
    3636# Note also that the versioned directory is handled later.
    37 $acdir = "@datadir@/aclocal";
     37$acdir = "${prefix}/share/aclocal";
    3838$default_acdir = $acdir;
    3939
  • trunk/essentials/sys-devel/automake-1.4/automake.in

    r3124 r3126  
    3232$VERSION = "@VERSION@";
    3333$PACKAGE = "@PACKAGE@";
    34 $prefix = "@prefix@";
    35 $am_dir = "@datadir@/@PACKAGE@-@APIVERSION@";
     34$prefix = $ENV{'UNIXROOT'}."@prefix@";
     35$am_dir = "${prefix}/share/@PACKAGE@-@APIVERSION@";
    3636$TAR = "@TAR@";
    3737
  • trunk/essentials/sys-devel/automake-1.4/compile.am

    r3124 r3126  
    2222OBJEXT# and only if it is available.
    2323OBJEXT.c.obj:
    24 OBJEXT  $(COMPILE) -c `cygpath -w $<`
     24OBJEXT  $(COMPILE) -c $<
     25#OBJEXT $(COMPILE) -c `cygpath -w $<`
    2526
    2627.s.o:
  • trunk/essentials/sys-devel/automake-1.4/m4/error.m4

    r3124 r3126  
    88              am_cv_lib_error_at_line=no)])
    99 if test $am_cv_lib_error_at_line = no; then
     10   if test -n "$OBJEXT"; then
     11     LIBOBJS="$LIBOBJS error.$OBJEXT"
     12   else
    1013   LIBOBJS="$LIBOBJS error.o"
     14   fi
    1115 fi
    1216 AC_SUBST(LIBOBJS)dnl
  • trunk/essentials/sys-devel/automake-1.4/mdate-sh

    r3124 r3126  
    3636# (3 shifts here, the next inside the loop).
    3737shift
    38 shift
    39 shift
     38# OS/2 doesn't necessarily have group/user columns, so we skip two shifts
     39if test -z "$OS2_SHELL"; then
     40  shift
     41  shift
     42fi
    4043
    4144# Find the month.  Next argument is day, followed by the year or time.
Note: See TracChangeset for help on using the changeset viewer.