Changeset 73

Show
Ignore:
Timestamp:
01/20/07 01:14:52 (2 years ago)
Author:
ingy
Message:
 r83@erxz:  ingy | 2007-01-20 01:14:36 -0800
 Separate nodes with '-' instead.
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/bin/make-make.pl

    r71 r73  
    9696\$(${TYPE}_LEVEL_$level): 
    9797        lib=../../src/$type/$stars/$pathlet/\$\@; \\ 
    98         link=`perl -e '\$\$_=shift;s!/!!g;s!\\.pod\$\$!!;print' \$\@`; \\ 
     98        link=`perl -e '\$\$_=shift;s!/!-!g;s!\\.pod\$\$!!;print' \$\@`; \\ 
    9999        ln -fs \$\$lib \$\$link; 
    100100... 
  • trunk/src/core/docs.mk

    r71 r73  
    1515$(CORE_LEVEL_2): 
    1616        lib=../../src/core/*/src/doc/$@; \ 
    17         link=`perl -e '$$_=shift;s!/!!g;s!\.pod$$!!;print' $@`; \ 
     17        link=`perl -e '$$_=shift;s!/!-!g;s!\.pod$$!!;print' $@`; \ 
    1818        ln -fs $$lib $$link; 
  • trunk/src/plugins/docs.mk

    r71 r73  
    88$(PLUGINS_LEVEL_2): 
    99        lib=../../src/plugins/*/*/src/doc/$@; \ 
    10         link=`perl -e '$$_=shift;s!/!!g;s!\.pod$$!!;print' $@`; \ 
     10        link=`perl -e '$$_=shift;s!/!-!g;s!\.pod$$!!;print' $@`; \ 
    1111        ln -fs $$lib $$link;