- Timestamp:
- Apr 15, 2007, 9:33:12 PM (18 years ago)
- 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 32 32 $APIVERSION = "@APIVERSION@"; 33 33 $PACKAGE = "@PACKAGE@"; 34 $prefix = "@prefix@";34 $prefix = $ENV{'UNIXROOT'}."@prefix@"; 35 35 # Note that this isn't pkgdatadir, but a separate directory. 36 36 # Note also that the versioned directory is handled later. 37 $acdir = " @datadir@/aclocal";37 $acdir = "${prefix}/share/aclocal"; 38 38 $default_acdir = $acdir; 39 39 -
trunk/essentials/sys-devel/automake-1.4/automake.in
r3124 r3126 32 32 $VERSION = "@VERSION@"; 33 33 $PACKAGE = "@PACKAGE@"; 34 $prefix = "@prefix@";35 $am_dir = " @datadir@/@PACKAGE@-@APIVERSION@";34 $prefix = $ENV{'UNIXROOT'}."@prefix@"; 35 $am_dir = "${prefix}/share/@PACKAGE@-@APIVERSION@"; 36 36 $TAR = "@TAR@"; 37 37 -
trunk/essentials/sys-devel/automake-1.4/compile.am
r3124 r3126 22 22 OBJEXT# and only if it is available. 23 23 OBJEXT.c.obj: 24 OBJEXT $(COMPILE) -c `cygpath -w $<` 24 OBJEXT $(COMPILE) -c $< 25 #OBJEXT $(COMPILE) -c `cygpath -w $<` 25 26 26 27 .s.o: -
trunk/essentials/sys-devel/automake-1.4/m4/error.m4
r3124 r3126 8 8 am_cv_lib_error_at_line=no)]) 9 9 if test $am_cv_lib_error_at_line = no; then 10 if test -n "$OBJEXT"; then 11 LIBOBJS="$LIBOBJS error.$OBJEXT" 12 else 10 13 LIBOBJS="$LIBOBJS error.o" 14 fi 11 15 fi 12 16 AC_SUBST(LIBOBJS)dnl -
trunk/essentials/sys-devel/automake-1.4/mdate-sh
r3124 r3126 36 36 # (3 shifts here, the next inside the loop). 37 37 shift 38 shift 39 shift 38 # OS/2 doesn't necessarily have group/user columns, so we skip two shifts 39 if test -z "$OS2_SHELL"; then 40 shift 41 shift 42 fi 40 43 41 44 # Find the month. Next argument is day, followed by the year or time.
Note:
See TracChangeset
for help on using the changeset viewer.