Ignore:
Timestamp:
Jun 17, 2012, 10:45:31 PM (13 years ago)
Author:
bird
Message:

kmk: Merged in changes from GNU make 3.82. Previous GNU make base version was gnumake-2008-10-28-CVS.

Location:
trunk/src/kmk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kmk

    • Property svn:ignore
      •  

        old new  
        1313stamp-*
        1414makebook*
         15
        1516.*gdbinit
         17.gdb_history
         18
        1619*.dep
        1720*.dvi
         
        3134*.pg
        3235*.pgs
         36
        3337README
        3438README.DOS
        3539README.W32
         40README.OS2
        3641aclocal.m4
        3742autom4te.cache
         
        5257config.h.W32
        5358config.h-vms
         59
        5460loadavg
        5561loadavg.c
        5662make
         63
        5764.deps
        5865.dep_segment
         66ID
         67TAGS
         68
        5969_*
        6070sun4
         
        7282sol2
        7383i486-linux
         84
        7485customs
         86
        7587install-sh
        7688mkinstalldirs
         89
         90.directive.asc
  • trunk/src/kmk/tests

    • Property svn:ignore
      --- 
      +++ 
      
  • trunk/src/kmk/tests/scripts/functions/abspath

    • Property svn:keywords deleted
  • trunk/src/kmk/tests/scripts/functions/realpath

    • Property svn:keywords deleted
  • trunk/src/kmk/tests/scripts/functions/shell

    r969 r2591  
    1212
    1313
     14# Test unescaped comment characters in shells.  Savannah bug #20513
     15if ($all_tests) {
     16    run_make_test(q!
     17FOO := $(shell echo '#')
     18foo: ; echo '$(FOO)'
     19!,
     20              '', "#\n");
     21}
     22
    1423# Test shells inside exported environment variables.
    1524# This is the test that fails if we try to put make exported variables into
  • trunk/src/kmk/tests/scripts/functions/wildcard

    r969 r2591  
    8282&compare_output($answer,&get_logfile(1));
    8383
     84# TEST #4: Verify that failed wildcards don't return the pattern
     85
     86run_make_test(q!
     87all: ; @echo $(wildcard xz--y*.7)
     88!,
     89              '', "\n");
    8490
    85911;
    86 
    87 
    88 
    89 
    90 
    91 
    92 
    93 
    94 
Note: See TracChangeset for help on using the changeset viewer.