diff options
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 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 |