mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-23 22:33:28 +00:00
Fixed typo in cleaning subprojects on windows
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@17825 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
9a9bf7993f
commit
9dd34b20f3
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
Sun Oct 12 18:43:20 2003 Nicola Pero <n.pero@mi.flashnet.it>
|
||||
|
||||
* Instance/subproject.make (internal-subproject-clean): Fixed typo
|
||||
- it was removing non-existing DLL_DEF_IMP instead of DLL_DEF_INP.
|
||||
|
||||
Sun Oct 12 18:29:49 2003 Nicola Pero <n.pero@mi.flashnet.it>
|
||||
|
||||
* Instance/palette.make: Use Instance/Shared/bundle.make to
|
||||
|
|
|
@ -49,7 +49,7 @@ DLL_DEF_FLAG = --input-def $(DLL_DEF_INP)
|
|||
endif
|
||||
|
||||
internal-subproject-clean::
|
||||
$(ECHO_NOTHING)rm -rf $(DLL_DEF_IMP)$(END_ECHO)
|
||||
$(ECHO_NOTHING)rm -rf $(DLL_DEF_INP)$(END_ECHO)
|
||||
|
||||
internal-subproject-all_:: subproject.def
|
||||
|
||||
|
|
Loading…
Reference in a new issue