diff options
author | Christopher Faylor <me@cgf.cx> | 2000-11-21 00:00:05 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2000-11-21 00:00:05 +0000 |
commit | d5b692284b02ca019ed50fa33790c38f5c905d00 (patch) | |
tree | de01aca6ae1aa4efbc272ed06a2d1e007f767650 /winsup/mingw/Makefile.in | |
parent | b63f2ed24489ee951d2dc19ef5e188669935b81d (diff) | |
download | cygnal-d5b692284b02ca019ed50fa33790c38f5c905d00.tar.gz cygnal-d5b692284b02ca019ed50fa33790c38f5c905d00.tar.bz2 cygnal-d5b692284b02ca019ed50fa33790c38f5c905d00.zip |
* Makefile.in: Use a different variable name for subdirectory since the
previous one was used by the top level make.
Diffstat (limited to 'winsup/mingw/Makefile.in')
-rw-r--r-- | winsup/mingw/Makefile.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/winsup/mingw/Makefile.in b/winsup/mingw/Makefile.in index 4b49c89de..1729e07ad 100644 --- a/winsup/mingw/Makefile.in +++ b/winsup/mingw/Makefile.in @@ -54,7 +54,7 @@ CXXFLAGS = @CXXFLAGS@ # compiling with Cygwin? MNO_CYGWIN = @MNO_CYGWIN@ ifdef MNO_CYGWIN -libsubdir=/mingw +subdirforlib=/mingw else libdir= endif @@ -207,14 +207,14 @@ install-info: info install-dirs: $(mkinstalldirs) $(bindir) - $(mkinstalldirs) $(tooldir)/lib$(libsubdir) + $(mkinstalldirs) $(tooldir)/lib$(subdirforlib) install: all install-dirs $(install_dlls_host) for i in $(LIBS); do \ - $(INSTALL_DATA) $$i $(tooldir)/lib$(libsubdir)/$$i ; \ + $(INSTALL_DATA) $$i $(tooldir)/lib$(subdirforlib)/$$i ; \ done for i in $(CRT0S); do \ - $(INSTALL_DATA) $$i $(tooldir)/lib/$(libsubdir)/$$i ; \ + $(INSTALL_DATA) $$i $(tooldir)/lib/$(subdirforlib)/$$i ; \ done for sub in . sys ; do \ dstdir=$(tooldir)/include/$(HEADER_SUBDIR)/$$sub ; \ |