[Kde-cygwin-cvs] CVS: kde-1.1.2/kdeutils/admin automoc,1.1.1.1,1.2
Status: Inactive
Brought to you by:
habacker
From: Ralf H. <hab...@us...> - 2001-06-21 12:53:51
|
Update of /cvsroot/kde-cygwin/kde-1.1.2/kdeutils/admin In directory usw-pr-cvs1:/tmp/cvs-serv1010 Modified Files: automoc Log Message: fix renaming problematic Index: automoc =================================================================== RCS file: /cvsroot/kde-cygwin/kde-1.1.2/kdeutils/admin/automoc,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -r1.1.1.1 -r1.2 *** automoc 2001/06/06 13:03:09 1.1.1.1 --- automoc 2001/06/21 12:53:48 1.2 *************** *** 1,3 **** ! #! /usr/local/bin/perl # Changes Makefile.in to work correctly with moc files. When called --- 1,3 ---- ! #! /usr/bin/perl # Changes Makefile.in to work correctly with moc files. When called *************** *** 403,407 **** if ($errorflag == 0) { print FILEOUT "\n# DO_NOT_USE_AUTOMOC\n"; ! rename $newfilename, $filename; } else { system("rm $newfilename"); --- 403,408 ---- if ($errorflag == 0) { print FILEOUT "\n# DO_NOT_USE_AUTOMOC\n"; ! print STDERR $newfilename, $filename; ! system("mv $newfilename $filename"); } else { system("rm $newfilename"); |