diff options
author | Christopher Faylor <me@cgf.cx> | 2012-11-23 14:52:07 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2012-11-23 14:52:07 +0000 |
commit | 2e488e95431d3a769928b197b590386b1f7e4bda (patch) | |
tree | ba91812c343087f56dca9f52ba4507d939c47023 /winsup/lsaauth | |
parent | 102bf65058a36dba83433bd4db1bf8273c843b3f (diff) | |
download | newlib-2e488e95431d3a769928b197b590386b1f7e4bda.zip newlib-2e488e95431d3a769928b197b590386b1f7e4bda.tar.gz newlib-2e488e95431d3a769928b197b590386b1f7e4bda.tar.bz2 |
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/ChangeLog | 4 | ||||
-rw-r--r-- | winsup/lsaauth/Makefile.in | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/winsup/lsaauth/ChangeLog b/winsup/lsaauth/ChangeLog index b838bb9..d1ae685 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 2bb08fb..8fbb2a4 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 |