diff options
author | Gaetan Nadon <memsize@videotron.ca> | 2013-09-28 15:26:33 -0400 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2013-10-04 14:09:26 -0700 |
commit | 28c8e1910797970dbf1d40794f1804a8fcc812bc (patch) | |
tree | 5950d6d486018ad91c0bb53ef562856345295501 /hw/xfree86 | |
parent | f3b529bf25db2700addbafc7aa4fc5b126ba9929 (diff) |
The Xorg binary is missing the extension $(EXEEXT) in the makefile
This is not a problem on UNIX platforms, but on CYGWIN it creates a broken
link to Xorg rather than a link to Xorg.exe.
From the CYGWIN log on tinderbox, we can see that the executable Xorg.exe is
installed correctly. We can see the command used to create the link:
(cd /jhbuild/install/[...]/install/bin && rm -f X && ln -s Xorg X)
Note that the "relink" makefile target correctly appends $(EXEEXT) to Xorg.
Reviewed-By: Matt Dew <marcoz@osource.org>
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'hw/xfree86')
-rw-r--r-- | hw/xfree86/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/xfree86/Makefile.am b/hw/xfree86/Makefile.am index d568e0d7e..6b6673279 100644 --- a/hw/xfree86/Makefile.am +++ b/hw/xfree86/Makefile.am @@ -90,7 +90,7 @@ install-data-local: install-exec-local: install-binPROGRAMS - (cd $(DESTDIR)$(bindir) && rm -f X && ln -s Xorg X) + (cd $(DESTDIR)$(bindir) && rm -f X && ln -s Xorg$(EXEEXT) X) if INSTALL_SETUID chown root $(DESTDIR)$(bindir)/Xorg chmod u+s $(DESTDIR)$(bindir)/Xorg |