diff options
author | marha <marha@users.sourceforge.net> | 2009-09-07 06:46:56 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2009-09-07 06:46:56 +0000 |
commit | b571a562410f565af2bdde52d9f7f9a23ffae04f (patch) | |
tree | 7a1efdd5be1a3ec9f418c7b328ac75245f7cddd2 | |
parent | 1f9b2920414edf2fb4db0e6285cf13e434bb1888 (diff) | |
download | vcxsrv-b571a562410f565af2bdde52d9f7f9a23ffae04f.tar.gz vcxsrv-b571a562410f565af2bdde52d9f7f9a23ffae04f.tar.bz2 vcxsrv-b571a562410f565af2bdde52d9f7f9a23ffae04f.zip |
DEBUG variable was passed in the wrong way to the makefile of plink.
-rw-r--r-- | xorg-server/makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xorg-server/makefile b/xorg-server/makefile index a9f8160a9..4eae8a365 100644 --- a/xorg-server/makefile +++ b/xorg-server/makefile @@ -92,7 +92,7 @@ load_makefile ..\xkbcomp\makefile MAKESERVER=0 DEBUG=$(DEBUG) xkbcomp.exe: ..\xkbcomp\$(OBJDIR:obj\$(OBJDIRPREFIX)%=obj\%)\xkbcomp.exe copy $< $@ -load_makefile ..\tools\plink\makefile MAKESERVER=0 DEBUG=$(DEBUG)) +load_makefile ..\tools\plink\makefile MAKESERVER=0 DEBUG=$(DEBUG) plink.exe: ..\tools\plink\$(OBJDIR:obj\$(OBJDIRPREFIX)%=obj\%)\plink.exe copy $< $@ |