make clean in bin directory removes run_locale_utils.sh symlink
---------------------------------------------------------------
Key: STDCXX-257
URL: http://issues.apache.org/jira/browse/STDCXX-257
Project: C++ Standard Library
Type: Bug
Components: Build
Reporter: Andrew Black
Priority: Minor
Executing make clean on the bin subdirectory of the buildspace produces the following output.
[ablack@quandry stdcxx-test]$ make clean -Cbuild/bin
make: Entering directory `/build/ablack/stdcxx-test/build/bin'
rm -f localedef locale
rm -rf a.out core *.o *.i *.ii *.ti *.sh *.sta *.out \
*.a \
tempinc cxx_repository SunWS_cache 2>/dev/null
make: Leaving directory `/build/ablack/stdcxx-test/build/bin'
This action removes the run_locale_utils.sh file, which is a symlink to the etc/config/run_locale_utils.sh
script in the source tree. Upon regeneration, the generated shell scipts for the different
locales will fail to run as the script they depend on is missing.
I suspect the correct solution is to regenerate this symlink via makefile rules if it doesn't
exist, and have the $(RUNTARGET) depend on this file.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira
|