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>2009-02-24 05:11:14 +0300
committerChristopher Faylor <me@cgf.cx>2009-02-24 05:11:14 +0300
commit99fe2b786610ed7b7d5354ed792c22f8446b8ea6 (patch)
tree81bf84d1945ad81b1429ab2d371df9ec68e2b889 /winsup/lsaauth
parentbe6f5dfdc711f7535ce58a9e5869b787719c0455 (diff)
Add DESTDIR functionality to Makefile.in's.
Diffstat (limited to 'winsup/lsaauth')
-rw-r--r--winsup/lsaauth/ChangeLog4
-rw-r--r--winsup/lsaauth/Makefile.in8
2 files changed, 8 insertions, 4 deletions
diff --git a/winsup/lsaauth/ChangeLog b/winsup/lsaauth/ChangeLog
index 437fcbc8d..6ff5edd1f 100644
--- a/winsup/lsaauth/ChangeLog
+++ b/winsup/lsaauth/ChangeLog
@@ -1,3 +1,7 @@
+2009-02-23 Sjors Gielen <mailinglist@dazjorz.com>
+
+ * Makefile.in: Add DESTDIR functionality.
+
2008-10-12 Christopher Faylor <me+cygwin@cgf.cx>
* Makefile.in: Rearrange to avoid -mno-cygwin.
diff --git a/winsup/lsaauth/Makefile.in b/winsup/lsaauth/Makefile.in
index c4cdccee5..e84a06be1 100644
--- a/winsup/lsaauth/Makefile.in
+++ b/winsup/lsaauth/Makefile.in
@@ -70,10 +70,10 @@ clean:
rm -f *.o *.dll
install: all
- $(SHELL) $(updir1)/mkinstalldirs $(bindir)
- $(INSTALL_PROGRAM) $(DLL) $(bindir)/$(DLL)
- $(INSTALL_PROGRAM) $(srcdir)/cyglsa64.dll $(bindir)/cyglsa64.dll
- $(INSTALL_PROGRAM) $(srcdir)/cyglsa-config $(bindir)/cyglsa-config
+ $(SHELL) $(updir1)/mkinstalldirs $(DESTDIR)$(bindir)
+ $(INSTALL_PROGRAM) $(DLL) $(DESTDIR)$(bindir)/$(DLL)
+ $(INSTALL_PROGRAM) $(srcdir)/cyglsa64.dll $(DESTDIR)$(bindir)/cyglsa64.dll
+ $(INSTALL_PROGRAM) $(srcdir)/cyglsa-config $(DESTDIR)$(bindir)/cyglsa-config
%.o: %.c
$(CC) $(WIN32_CFLAGS) -c -o $@ $<