mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-23 22:33:28 +00:00
Set HAS_LN_S to no on mingw32
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@18015 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
65ea76b35c
commit
c17f3b85d9
2 changed files with 8 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
Fri Oct 31 17:16:51 2003 Matt Rice <ratmice@yahoo.com>
|
||||
|
||||
* config.make.in (HAS_LN_S): Set to no for mingw32.
|
||||
|
||||
2003-10-25 00:50 Alexander Malmberg <alexander@malmberg.org>
|
||||
|
||||
* debugapp.in: Only pass --args to gdb if its new enough to handle
|
||||
|
|
|
@ -51,6 +51,10 @@ ifeq ($(LN_S), ln -s)
|
|||
HAS_LN_S = yes
|
||||
endif
|
||||
|
||||
ifeq (@target_os@,mingw32)
|
||||
HAS_LN_S = no
|
||||
endif
|
||||
|
||||
LD = $(CC)
|
||||
LDOUT =
|
||||
LDFLAGS = @LDFLAGS@
|
||||
|
|
Loading…
Reference in a new issue