]> sourceware.org Git - newlib-cygwin.git/commitdiff
cygwin/ChangeLog:
authorChristopher Faylor <me@cgf.cx>
Fri, 23 Nov 2012 14:52:07 +0000 (14:52 +0000)
committerChristopher Faylor <me@cgf.cx>
Fri, 23 Nov 2012 14:52:07 +0000 (14:52 +0000)
2012-11-23  Christopher Faylor  <me.cygwin2012@cgf.cx>

* Makefile.in: Use explicit path to mkdir.

lsaauth/ChangeLog:
2012-11-23  Christopher Faylor  <me.cygwin2012@cgf.cx>

* Makefile.in: Use /bin/mkdir to make directories.

testsuite/ChangeLog:
2012-11-23  Christopher Faylor  <me.cygwin2012@cgf.cx>

* Makefile.in: Remove old Makefile.common'isms.  Don't rely on
in-build tools.

winsup/cygserver/ChangeLog
winsup/cygserver/Makefile.in
winsup/cygwin/ChangeLog
winsup/cygwin/Makefile.in
winsup/lsaauth/ChangeLog
winsup/lsaauth/Makefile.in
winsup/testsuite/ChangeLog
winsup/testsuite/Makefile.in

index 4601068c7f011aa4592ac2cdbd8b649f4e5458b8..677653194aa98c0cb5eb5d07c2f217b399e6b8a9 100644 (file)
@@ -1,3 +1,7 @@
+2012-11-23  Christopher Faylor  <me.cygwin2012@cgf.cx>
+
+       * Makefile.in: Use /bin/mkdir to make install directories.
+
 2012-11-23  Corinna Vinschen  <corinna@vinschen.de>
 
        * sysv_sem.cc (semundo_clear): Move condition to break from
index 3522f9d6ebbc7b620c724324f623e124b4081bbe..e633e9b01459d69ea24c10ea0f26fd0ab5efefa9 100644 (file)
@@ -54,11 +54,8 @@ CYGWIN_LIB:=$(cygwin_build)/libcygwin.a
 
 all: cygserver.exe
 
-install: all $(updir1)/mkinstalldirs cygserver.conf cygserver-config README
-       $(updir1)/mkinstalldirs $(DESTDIR)$(sbindir)
-       $(updir1)/mkinstalldirs $(DESTDIR)$(bindir)
-       $(updir1)/mkinstalldirs $(DESTDIR)$(sysconfdir)/defaults/etc
-       $(updir1)/mkinstalldirs $(DESTDIR)$(prefix)/share/doc/Cygwin
+install: all cygserver.conf cygserver-config README
+       /bin/mkdir -p $(DESTDIR)$(sbindir) $(DESTDIR)$(bindir) $(DESTDIR)$(sysconfdir)/defaults/etc $(DESTDIR)$(prefix)/share/doc/Cygwin
        $(INSTALL_PROGRAM) cygserver.exe $(DESTDIR)$(sbindir)/cygserver.exe
        $(INSTALL_PROGRAM) $(srcdir)/cygserver-config $(DESTDIR)$(bindir)/cygserver-config
        $(INSTALL_DATA) $(srcdir)/cygserver.conf $(DESTDIR)$(sysconfdir)/defaults/etc/cygserver.conf
index 2f6e4865563059357efe09c0a6ed73b2204e65db..d943a862a6ac0b55da91f1fb9618a7bb9ea710f6 100644 (file)
@@ -1,3 +1,7 @@
+2012-11-23  Christopher Faylor  <me.cygwin2012@cgf.cx>
+
+       * Makefile.in: Use explicit path to mkdir.
+
 2012-11-22  Christopher Faylor  <me.cygwin2012@cgf.cx>
 
        * select.cc (select): Don't return -1 when we've timed out after
index edbc0e27eb5ab13a1f887d4a4203dff2cfa5e388..ebc6ae4cac8e8d6b9f0f13154b990b1c6994222c 100644 (file)
@@ -438,7 +438,7 @@ $(LIBSERVER): ${cygserver_blddir}/Makefile
        $(MAKE) -C ${cygserver_blddir} libcygserver.a
 
 ${cygserver_blddir}/Makefile:
-       mkdir -p ${@D}
+       /bin/mkdir -p ${@D}
        cd ${@D} && exec /bin/sh $(dir ${srcdir})/cygserver/configure ${configure_args}
 
 dll_ofiles: $(DLL_OFILES)
index b838bb9b3dc90071410a065b0136749ba744ad43..d1ae685a541fabda7d8e87c324c8831b4a7a4bbd 100644 (file)
@@ -1,3 +1,7 @@
+2012-11-23  Christopher Faylor  <me.cygwin2012@cgf.cx>
+
+       * Makefile.in: Use /bin/mkdir to make directories.
+
 2012-10-24  Corinna Vinschen  <corinna@vinschen.de>
 
        * configure.in: Add AC_NO_EXECUTABLES.
index 2bb08fbeca94f81a2d009750628d5947e50d0b69..8fbb2a45ab9cdf37ff5bb60963dd6828158389de 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (c) 2006, 2008, 2009, 2011 Red Hat, Inc.
+# Copyright (c) 2006, 2008, 2009, 2011, 2012 Red Hat, Inc.
 #
 #     This program is free software; you can redistribute it and/or modify
 #     it under the terms of the GNU General Public License as published by
@@ -83,7 +83,7 @@ clean:
        rm -f *.o *.dll cyglsa.def
 
 install: all
-       $(SHELL) $(updir1)/mkinstalldirs $(DESTDIR)$(bindir)
+       /bin/mkdir -p $(DESTDIR)$(bindir)
        $(INSTALL_PROGRAM) $(DLL32) $(DESTDIR)$(bindir)/$(DLL32)
        $(INSTALL_PROGRAM) $(DLL64) $(DESTDIR)$(bindir)/$(DLL64)
        $(INSTALL_PROGRAM) $(srcdir)/cyglsa-config $(DESTDIR)$(bindir)/cyglsa-config
index 4d934a437d0b991963992ef873a760b6273a5779..c9c67636d582fa9077f1021eacdc918e3d5c1db3 100644 (file)
@@ -1,3 +1,8 @@
+2012-11-23  Christopher Faylor  <me.cygwin2012@cgf.cx>
+
+       * Makefile.in: Remove old Makefile.common'isms.  Don't rely on
+       in-build tools.
+
 2012-04-24  Yaakov Selkowitz  <yselkowitz@users.sourceforge.net>
 
        * configure: Regenerate.
index f47ddcb55d6cf93ad88ece224c81023a724560b5..04ff99bc07bcd825753923f9b3d6d862d25ed215 100644 (file)
@@ -1,5 +1,5 @@
 # Makefile.in for Cygwin's testsuite.
-# Copyright 2000, 2001, 2002, 2003, 2005, 2006, 2009 Red Hat, Inc.
+# Copyright 2000, 2001, 2002, 2003, 2005, 2006, 2009, 2012 Red Hat, Inc.
 #
 # This file is part of Cygwin.
 #
@@ -161,13 +161,7 @@ testsuite/site.exp: site.exp
 # Note: we set the PATH so that we can pick up cygwin0.dll
 
 check: $(TESTSUP_LIB_NAME) $(RUNTIME) cygrun.exe testsuite/site.exp
-       cd testsuite; \
-       export EXPECT=expect ; \
-       if [ -f $(bupdir2)/expect/expect ] ; then  \
-          TCL_LIBRARY=`cd .. ; cd ${srcdir}/../../tcl/library ; pwd` ; \
-           export TCL_LIBRARY ; fi ; \
-       PATH=$(bupdir)/cygwin:$${PATH} ;\
-       runtest --tool winsup $(RUNTESTFLAGS) ;\
+       cd testsuite; runtest --tool winsup $(RUNTESTFLAGS)
 
 cygrun.o: cygrun.c
        ${MINGW_FE} $(CC) $(MINGW_CFLAGS) -o $@ -c $<
This page took 0.0411049999999999 seconds and 5 git commands to generate.