diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-09-02 20:42:25 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-09-02 20:42:25 +0000 |
commit | 297d5f2a1d1d497507a490089a1bd9e3166e3652 (patch) | |
tree | 3efa170c160aab18fc0b152a75dd1479e25ef96f /bin | |
parent | f77a77412fa204886521389590df138ff4cf2421 (diff) | |
download | ATCD-297d5f2a1d1d497507a490089a1bd9e3166e3652.tar.gz |
ChangeLog is no longer a symbolic link
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/create_ace_build | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/bin/create_ace_build b/bin/create_ace_build index 9e1b3911fd0..415bcb5155d 100755 --- a/bin/create_ace_build +++ b/bin/create_ace_build @@ -17,9 +17,7 @@ eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}' # 2) tries not to put junk files into the build tree, # 3) only creates a new tree in a build/ directory below the current, # top level ACE directory (it's a feature :-), but it does enforce -# consistency), and -# 4) is ACE-specific, so it can always create the ChangeLog symlink, -# for example. +# consistency). # # This program can be re-run on a build tree at any time in order to # update it. It will only add new symlinks, it won't remove any that @@ -128,19 +126,6 @@ foreach $file ( @files ) { } #### -#### If this is for an ACE top-level directory, create ChangeLog symlink. -#### -unless ( -e "$build/ChangeLog" ) { - if (!$absolute) { - symlink "../../ChangeLog", "$build/ChangeLog" || - die "$0: unable to create $build/ChangeLog symlink\n"; - } else { - symlink "$source/ChangeLog", "$build/ChangeLog" || - die "$0: unable to create $build/ChangeLog symlink\n"; - } -} - -#### #### Done: print message. #### print "\nCompleted creation of $build/.\n"; |