Changeset 4327


Ignore:
Timestamp:
Mar 12, 2023, 6:52:50 AM (3 months ago)
Author:
Peter
Message:

avoid Makefile input prefixed with spaces

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/m4/yat_svn_release.m4

    r4326 r4327  
    11## $Id$
    22
    3 # serial 18 (yat 0.21)
     3# serial 19 (yat 0.21)
    44
    55# SYNOPSIS
     
    243243  @$(AUTOCONF) --version | head -n 1 | $(SED) -e 's/.*(//' -e 's/)//' >> ]$[@
    244244  @$(AUTOMAKE) --version | head -n 1 | $(SED) -e 's/.*(//' -e 's/)//' >> ]$[@
    245         @]write_LIBTOOL_VERSION_cmd[
     245  @]write_LIBTOOL_VERSION_cmd[
    246246  @echo >> ]$[@
    247247  @echo You can find the list of significant changes between $(VERSION)>> ]$[@
  • trunk/test/defs.sh.in

    r4326 r4327  
    171171: ${PKG_CONFIG='pkg-config'}
    172172: ${RM=rm}
     173: ${EGREP=@EGREP@}
     174: ${GREP=@GREP@}
    173175YAT_CONFIG=$abs_top_builddir/build_support/yat-config
    174176YAT_LDFLAGS="@YAT_LDFLAGS@"
  • trunk/test/yat_svn_release_year_test.sh

    r3999 r4327  
    4848bootstrap
    4949test -r my.am || exit_fail
    50 grep release_year.txt my.am || exit_fail
     50cat my.am
     51$GREP release_year.txt my.am || exit_fail
     52$EGREP "^ " my.am && exit_fail
    5153
    5254./configure $configure_opts
    53 grep RELEASE_YEAR config.h || exit_fail
     55$GREP RELEASE_YEAR config.h || exit_fail
    5456$MAKE
    5557
Note: See TracChangeset for help on using the changeset viewer.