make clean deletes wrong files (Bug #258)
Description
make clean - deletes too much.
To reproduce:
svn co https://code.ros.org/svn/opencv/trunk/opencv opencv
cd opencv
cmake -G 'Unix Makefiles'
make clean
svn status | grep ^!
gives a list of deleted files:
! src/cxcore/_cxcore.h
! src/highgui/_highgui.h
! src/cvaux/_cvaux.h
! src/cv/_cv.h
! src/ml/_ml.h
Those files shouldn't be deleted by make clean
, right?
Mirek Rusin
Related issues
duplicates Bug #206: Recompilation fails after `make clean` | Done |
Associated revisions
Merge ppull request #258 from asmorkalov/android_emu_fix
Merge pull request #258 from swook:spatial_gradient
History
Updated by Mirek Rusin almost 15 years ago
To reproduce should be (wiki ate text):
svn co https://code.ros.org/svn/opencv/trunk/opencv opencv cd opencv cmake -G 'Unix Makefiles' make clean svn status | grep ^!
Updated by Vadim Pisarevsky almost 15 years ago
try to do out-of-source build:
svn co https://code.ros.org/svn/opencv/trunk/opencv opencv
cd opencv
mkdir _build
cd _build
cmake -G 'Unix Makefiles' ..
make clean
cd ..
svn status | grep ^!
Updated by anonymous - almost 15 years ago
duplicate of #206
- Status changed from Open to Done
- (deleted custom field) set to duplicate
Updated by Andrey Kamaev almost 13 years ago
- Status changed from Done to Cancelled