Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2012-11-23 18:52:07 +0400
committerChristopher Faylor <me@cgf.cx>2012-11-23 18:52:07 +0400
commit2e488e95431d3a769928b197b590386b1f7e4bda (patch)
treeba91812c343087f56dca9f52ba4507d939c47023 /winsup/lsaauth
parent102bf65058a36dba83433bd4db1bf8273c843b3f (diff)
cygwin/ChangeLog:
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.
Diffstat (limited to 'winsup/lsaauth')
-rw-r--r--winsup/lsaauth/ChangeLog4
-rw-r--r--winsup/lsaauth/Makefile.in4
2 files changed, 6 insertions, 2 deletions
diff --git a/winsup/lsaauth/ChangeLog b/winsup/lsaauth/ChangeLog
index b838bb9b3..d1ae685a5 100644
--- a/winsup/lsaauth/ChangeLog
+++ b/winsup/lsaauth/ChangeLog
@@ -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.
diff --git a/winsup/lsaauth/Makefile.in b/winsup/lsaauth/Makefile.in
index 2bb08fbec..8fbb2a45a 100644
--- a/winsup/lsaauth/Makefile.in
+++ b/winsup/lsaauth/Makefile.in
@@ -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