* Makefile.in: Move srcdir definition before others which uses it.
This commit is contained in:
parent
8d777a13fc
commit
30a4f5b696
|
@ -1,3 +1,7 @@
|
||||||
|
2011-04-06 Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
|
||||||
|
|
||||||
|
* Makefile.in: Move srcdir definition before others which uses it.
|
||||||
|
|
||||||
2011-04-06 Jon TURNEY <jon.turney@dronecode.org.uk>
|
2011-04-06 Jon TURNEY <jon.turney@dronecode.org.uk>
|
||||||
|
|
||||||
* dll_init.cc (reserve_at, release_at): New functions.
|
* dll_init.cc (reserve_at, release_at): New functions.
|
||||||
|
@ -20,8 +24,8 @@
|
||||||
|
|
||||||
2011-04-04 Christopher Faylor <me.cygwin2011@cgf.cx>
|
2011-04-04 Christopher Faylor <me.cygwin2011@cgf.cx>
|
||||||
|
|
||||||
* Makefile.in: Move Makefile.common include earlier to fix problems with
|
* Makefile.in: Move Makefile.common include earlier to fix problems
|
||||||
relative ${srcdir} path which confuses make.
|
with relative ${srcdir} path which confuses make.
|
||||||
|
|
||||||
2011-04-04 Corinna Vinschen <corinna@vinschen.de>
|
2011-04-04 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# Makefile.in for Cygwin.
|
# Makefile.in for Cygwin.
|
||||||
# Copyright 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
|
# Copyright 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
|
||||||
# 2005, 2006, 2007, 2008, 2009, 2010 Red Hat, Inc.
|
# 2005, 2006, 2007, 2008, 2009, 2010, 2011 Red Hat, Inc.
|
||||||
#
|
#
|
||||||
# This file is part of Cygwin.
|
# This file is part of Cygwin.
|
||||||
#
|
#
|
||||||
|
@ -15,8 +15,8 @@
|
||||||
#
|
#
|
||||||
CC:=@CC@
|
CC:=@CC@
|
||||||
CC_FOR_TARGET:=$(CC)
|
CC_FOR_TARGET:=$(CC)
|
||||||
CONFIG_DIR:=$(srcdir)/config/@CONFIG_DIR@
|
|
||||||
srcdir:=@srcdir@
|
srcdir:=@srcdir@
|
||||||
|
CONFIG_DIR:=$(srcdir)/config/@CONFIG_DIR@
|
||||||
include ${srcdir}/../Makefile.common
|
include ${srcdir}/../Makefile.common
|
||||||
|
|
||||||
SHELL:=@SHELL@
|
SHELL:=@SHELL@
|
||||||
|
|
Loading…
Reference in New Issue