Blacklist "icons" and "resources" in create_internal_release, so that

icons/ and resources/ do not get makefile, cgal_test, cgal_test_with_cmake
and CMakeLists.txt
This commit is contained in:
Laurent Rineau 2008-09-10 13:13:28 +00:00
parent 976acb6f83
commit 14db4fe00c
1 changed files with 3 additions and 3 deletions

View File

@ -323,7 +323,7 @@ sub make_testscripts()
chdir 'test'; chdir 'test';
foreach $DIR (glob("*")) { foreach $DIR (glob("*")) {
if ( -d $DIR ) { if ( (-d $DIR) && ("$DIR" ne "icons") && ("$DIR" ne "resources") ) {
chdir $DIR; chdir $DIR;
if ( -f 'Makefile') { if ( -f 'Makefile') {
rename 'Makefile', 'makefile'; rename 'Makefile', 'makefile';
@ -420,7 +420,7 @@ sub generate_cmake_scripts
foreach $DIR (glob("*")) foreach $DIR (glob("*"))
{ {
if ( -d $DIR ) if ( (-d $DIR) && ("$DIR" ne "icons") && ("$DIR" ne "resources") )
{ {
chdir $DIR; chdir $DIR;
@ -457,7 +457,7 @@ sub generate_cgal_test_with_cmake
{ {
foreach $DIR (glob("*")) foreach $DIR (glob("*"))
{ {
if ( -d $DIR ) if ( (-d $DIR) && ("$DIR" ne "icons") && ("$DIR" ne "resources") )
{ {
chdir $DIR; chdir $DIR;
if ( ! -f 'cgal_test_with_cmake' ) if ( ! -f 'cgal_test_with_cmake' )