]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Makefile.in (ORDINARY_FLAGS_TO_PASS): Also pass DESTDIR.
authorChristian Cornelssen <ccorn@cs.tu-berlin.de>
Tue, 28 Jan 2003 21:57:41 +0000 (22:57 +0100)
committerAlexandre Oliva <aoliva@gcc.gnu.org>
Tue, 28 Jan 2003 21:57:41 +0000 (21:57 +0000)
* Makefile.in (ORDINARY_FLAGS_TO_PASS): Also pass DESTDIR.
(install-cpp, uninstall-cpp, installdirs, install-common)
(install-driver, install-info, install-man)
(install-headers, install-include-dir, install-headers-tar)
(install-headers-cpio, install-headers-cp, install-collect2)
(uninstall): Prepend $(DESTDIR) to destination paths in all
(un)installation commands.
(install-driver): Rewrite $(LN) commands to support DESTDIR
with "ln" as well as with "ln -s".
(installdirs): Simply use mkinstalldirs.
(install-libgcc, install-multilib): Also pass DESTDIR.
* mklibgcc.in: Prepend $(DESTDIR) to $(libsubdir) in the
installation destination variable ldir.
* config/alpha/t-osf4 (SHLIB_INSTALL): Prepend $$(DESTDIR)
to $$(slibdir) in the installation commands.
* config/arm/t-netbsd (SHLIB_INSTALL): Likewise.
* config/mips/t-iris6 (SHLIB_INSTALL): Likewise.
* config/pa/t-hpux-shlib (SHLIB_INSTALL): Likewise.
* config/rs6000/t-aix43 (SHLIB_INSTALL): Likewise.
* config/t-slibgcc-elf-ver (SHLIB_INSTALL): Likewise.
* config/t-slibgcc-sld (SHLIB_INSTALL): Likewise.
* config/arc/t-arc (install-multilib-arc): Prepend $(DESTDIR) to
$(libsubdir) in the installation commands.

From-SVN: r62023

gcc/ChangeLog
gcc/Makefile.in
gcc/config/alpha/t-osf4
gcc/config/arc/t-arc
gcc/config/arm/t-netbsd
gcc/config/mips/t-iris6
gcc/config/pa/t-hpux-shlib
gcc/config/rs6000/t-aix43
gcc/config/t-slibgcc-elf-ver
gcc/config/t-slibgcc-sld
gcc/mklibgcc.in

index b08a5f6032b7b230a98fcc26c25c0195608843fe..9ea3e6e4ef243185644a9f50cd75744c51712a25 100644 (file)
@@ -1,3 +1,29 @@
+2003-01-28  Christian Cornelssen  <ccorn@cs.tu-berlin.de>
+
+       * Makefile.in (ORDINARY_FLAGS_TO_PASS): Also pass DESTDIR.
+       (install-cpp, uninstall-cpp, installdirs, install-common)
+       (install-driver, install-info, install-man)
+       (install-headers, install-include-dir, install-headers-tar)
+       (install-headers-cpio, install-headers-cp, install-collect2)
+       (uninstall): Prepend $(DESTDIR) to destination paths in all
+       (un)installation commands.
+       (install-driver): Rewrite $(LN) commands to support DESTDIR
+       with "ln" as well as with "ln -s".
+       (installdirs): Simply use mkinstalldirs.
+       (install-libgcc, install-multilib): Also pass DESTDIR.
+       * mklibgcc.in: Prepend $(DESTDIR) to $(libsubdir) in the
+       installation destination variable ldir.
+       * config/alpha/t-osf4 (SHLIB_INSTALL): Prepend $$(DESTDIR)
+       to $$(slibdir) in the installation commands.
+       * config/arm/t-netbsd (SHLIB_INSTALL): Likewise.
+       * config/mips/t-iris6 (SHLIB_INSTALL): Likewise.
+       * config/pa/t-hpux-shlib (SHLIB_INSTALL): Likewise.
+       * config/rs6000/t-aix43 (SHLIB_INSTALL): Likewise.
+       * config/t-slibgcc-elf-ver (SHLIB_INSTALL): Likewise.
+       * config/t-slibgcc-sld (SHLIB_INSTALL): Likewise.
+       * config/arc/t-arc (install-multilib-arc): Prepend $(DESTDIR) to
+       $(libsubdir) in the installation commands.
+
 2003-01-28  Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at> 
        Backport patches
        
index a12a7407d36c1fc84c1f665341ced060ec034440..e7c29b9e55a101c3db65999bdc510acd4449a71c 100644 (file)
@@ -656,6 +656,7 @@ ORDINARY_FLAGS_TO_PASS = \
        "BISON=$(BISON)" \
        "BISONFLAGS=$(BISONFLAGS)" \
        "CFLAGS=$(CFLAGS) $(WARN_CFLAGS)" \
+       "DESTDIR=$(DESTDIR)" \
        "GCC_FOR_TARGET=$(GCC_FOR_TARGET)" \
        "LDFLAGS=$(LDFLAGS)" \
        "FLEX=$(FLEX)" \
@@ -2537,180 +2538,168 @@ install: install-common $(INSTALL_HEADERS) $(INSTALL_LIBGCC) \
 # Handle cpp installation.
 install-cpp: cpp$(exeext)
        -if [ -f gcc-cross$(exeext) ] ; then \
-         rm -f $(bindir)/$(CPP_CROSS_NAME)$(exeext); \
-         $(INSTALL_PROGRAM) -m 755 cpp$(exeext) $(bindir)/$(CPP_CROSS_NAME)$(exeext); \
+         rm -f $(DESTDIR)$(bindir)/$(CPP_CROSS_NAME)$(exeext); \
+         $(INSTALL_PROGRAM) -m 755 cpp$(exeext) $(DESTDIR)$(bindir)/$(CPP_CROSS_NAME)$(exeext); \
          if [ x$(cpp_install_dir) != x ]; then \
-           rm -f $(prefix)/$(cpp_install_dir)/$(CPP_CROSS_NAME)$(exeext); \
-           $(INSTALL_PROGRAM) -m 755 cpp$(exeext) $(prefix)/$(cpp_install_dir)/$(CPP_CROSS_NAME)$(exeext); \
+           rm -f $(DESTDIR)$(prefix)/$(cpp_install_dir)/$(CPP_CROSS_NAME)$(exeext); \
+           $(INSTALL_PROGRAM) -m 755 cpp$(exeext) $(DESTDIR)$(prefix)/$(cpp_install_dir)/$(CPP_CROSS_NAME)$(exeext); \
          else true; fi; \
        else \
-         rm -f $(bindir)/$(CPP_INSTALL_NAME)$(exeext); \
-         $(INSTALL_PROGRAM) -m 755 cpp$(exeext) $(bindir)/$(CPP_INSTALL_NAME)$(exeext); \
+         rm -f $(DESTDIR)$(bindir)/$(CPP_INSTALL_NAME)$(exeext); \
+         $(INSTALL_PROGRAM) -m 755 cpp$(exeext) $(DESTDIR)$(bindir)/$(CPP_INSTALL_NAME)$(exeext); \
          if [ x$(cpp_install_dir) != x ]; then \
-           rm -f $(prefix)/$(cpp_install_dir)/$(CPP_INSTALL_NAME)$(exeext); \
-           $(INSTALL_PROGRAM) -m 755 cpp$(exeext) $(prefix)/$(cpp_install_dir)/$(CPP_INSTALL_NAME)$(exeext); \
+           rm -f $(DESTDIR)$(prefix)/$(cpp_install_dir)/$(CPP_INSTALL_NAME)$(exeext); \
+           $(INSTALL_PROGRAM) -m 755 cpp$(exeext) $(DESTDIR)$(prefix)/$(cpp_install_dir)/$(CPP_INSTALL_NAME)$(exeext); \
          else true; fi; \
        fi
 
 uninstall-cpp:
-       -rm -f $(bindir)/$(CPP_INSTALL_NAME)$(exeext)
-       -rm -f $(bindir)/$(CPP_CROSS_NAME)$(exeext)
+       -rm -f $(DESTDIR)$(bindir)/$(CPP_INSTALL_NAME)$(exeext)
+       -rm -f $(DESTDIR)$(bindir)/$(CPP_CROSS_NAME)$(exeext)
        -if [ x$(cpp_install_dir) != x ]; then \
-         rm -f $(prefix)/$(cpp_install_dir)/$(CPP_INSTALL_NAME)$(exeext); \
-         rm -f $(prefix)/$(cpp_install_dir)/$(CPP_CROSS_NAME)$(exeext); \
+         rm -f $(DESTDIR)$(prefix)/$(cpp_install_dir)/$(CPP_INSTALL_NAME)$(exeext); \
+         rm -f $(DESTDIR)$(prefix)/$(cpp_install_dir)/$(CPP_CROSS_NAME)$(exeext); \
        else true; fi
 
 # Create the installation directories.
+# $(libdir)/gcc-lib/include isn't currently searched by cpp.
 installdirs:
-       -if [ -d $(prefix) ] ; then true ; else mkdir $(prefix) ; chmod a+rx $(prefix) ; fi
-       -if [ -d $(exec_prefix) ] ; then true ; else mkdir $(exec_prefix) ; chmod a+rx $(exec_prefix) ; fi
-       -if [ -d $(libdir) ] ; then true ; else mkdir $(libdir) ; chmod a+rx $(libdir) ; fi
-       -if [ -d $(libdir)/gcc-lib ] ; then true ; else mkdir $(libdir)/gcc-lib ; chmod a+rx $(libdir)/gcc-lib ; fi
-# This dir isn't currently searched by cpp.
-#      -if [ -d $(libdir)/gcc-lib/include ] ; then true ; else mkdir $(libdir)/gcc-lib/include ; chmod a+rx $(libdir)/gcc-lib/include ; fi
-       -fdir= ; for dir in `echo $(libsubdir) | tr '/' ' '`; do \
-         fdir=$${fdir}/$${dir}; \
-         if [ -d $${fdir} ] ; then true ; else mkdir $${fdir}; chmod a+rx $${fdir}; fi ; \
-       done
-       -if [ -d $(bindir) ] ; then true ; else mkdir $(bindir) ; chmod a+rx $(bindir) ; fi
-       -if [ -d $(includedir) ] ; then true ; else mkdir $(includedir) ; chmod a+rx $(includedir) ; fi
-       -if [ -d $(infodir) ] ; then true ; else mkdir $(infodir) ; chmod a+rx $(infodir) ; fi
-       -if [ -d $(slibdir) ] ; then true ; else mkdir $(slibdir) ; chmod a+rx $(slibdir) ; fi
-# We don't use mkdir -p to create the parents of man1dir,
-# because some systems don't support it.
-# Instead, we use this technique to create the immediate parent of man1dir.
-       -parent=`echo $(man1dir)|sed -e 's@/[^/]*$$@@'`; \
-       if [ -d $$parent ] ; then true ; else mkdir $$parent ; chmod a+rx $$parent ; fi
-       -if [ -d $(man1dir) ] ; then true ; else mkdir $(man1dir) ; chmod a+rx $(man1dir) ; fi
-       -if [ -d $(man7dir) ] ; then true ; else mkdir $(man7dir) ; chmod a+rx $(man7dir) ; fi
+       $(SHELL) ${srcdir}/mkinstalldirs $(DESTDIR)$(libsubdir)
+       $(SHELL) ${srcdir}/mkinstalldirs $(DESTDIR)$(bindir)
+       $(SHELL) ${srcdir}/mkinstalldirs $(DESTDIR)$(includedir)
+       $(SHELL) ${srcdir}/mkinstalldirs $(DESTDIR)$(infodir)
+       $(SHELL) ${srcdir}/mkinstalldirs $(DESTDIR)$(slibdir)
+       $(SHELL) ${srcdir}/mkinstalldirs $(DESTDIR)$(man1dir)
+       $(SHELL) ${srcdir}/mkinstalldirs $(DESTDIR)$(man7dir)
 
 # Install the compiler executables built during cross compilation.
 install-common: native $(EXTRA_PARTS) lang.install-common
        for file in $(COMPILERS); do \
          if [ -f $$file ] ; then \
-           rm -f $(libsubdir)/$$file; \
-           $(INSTALL_PROGRAM) $$file $(libsubdir)/$$file; \
+           rm -f $(DESTDIR)$(libsubdir)/$$file; \
+           $(INSTALL_PROGRAM) $$file $(DESTDIR)$(libsubdir)/$$file; \
          else true; \
          fi; \
        done
        for file in $(EXTRA_PASSES) $(EXTRA_PROGRAMS) $(USE_COLLECT2) ..; do \
          if [ x"$$file" != x.. ]; then \
-           rm -f $(libsubdir)/$$file; \
-           $(INSTALL_PROGRAM) $$file $(libsubdir)/$$file; \
+           rm -f $(DESTDIR)$(libsubdir)/$$file; \
+           $(INSTALL_PROGRAM) $$file $(DESTDIR)$(libsubdir)/$$file; \
          else true; fi; \
        done
        for file in $(EXTRA_PARTS) ..; do \
          if [ x"$$file" != x.. ]; then \
-           rm -f $(libsubdir)/$$file; \
-           $(INSTALL_DATA) $$file $(libsubdir)/$$file; \
-           chmod a-x $(libsubdir)/$$file; \
+           rm -f $(DESTDIR)$(libsubdir)/$$file; \
+           $(INSTALL_DATA) $$file $(DESTDIR)$(libsubdir)/$$file; \
+           chmod a-x $(DESTDIR)$(libsubdir)/$$file; \
          else true; fi; \
        done
 # Don't mess with specs if it doesn't exist yet.
        -if [ -f specs ] ; then \
-         rm -f $(libsubdir)/specs; \
-         $(INSTALL_DATA) specs $(libsubdir)/specs; \
-         chmod a-x $(libsubdir)/specs; \
+         rm -f $(DESTDIR)$(libsubdir)/specs; \
+         $(INSTALL_DATA) specs $(DESTDIR)$(libsubdir)/specs; \
+         chmod a-x $(DESTDIR)$(libsubdir)/specs; \
        fi
 # Install protoize if it was compiled.
        -if [ -f protoize$(exeext) ]; \
        then \
            if [ -f gcc-cross$(exeext) ] ; then \
-               rm -f $(bindir)/$(PROTOIZE_CROSS_NAME)$(exeext); \
-               $(INSTALL_PROGRAM) protoize$(exeext) $(bindir)/$(PROTOIZE_CROSS_NAME)$(exeext); \
-               rm -f $(bindir)/$(UNPROTOIZE_CROSS_NAME)$(exeext); \
-               $(INSTALL_PROGRAM) unprotoize$(exeext) $(bindir)/$(UNPROTOIZE_CROSS_NAME)$(exeext); \
+               rm -f $(DESTDIR)$(bindir)/$(PROTOIZE_CROSS_NAME)$(exeext); \
+               $(INSTALL_PROGRAM) protoize$(exeext) $(DESTDIR)$(bindir)/$(PROTOIZE_CROSS_NAME)$(exeext); \
+               rm -f $(DESTDIR)$(bindir)/$(UNPROTOIZE_CROSS_NAME)$(exeext); \
+               $(INSTALL_PROGRAM) unprotoize$(exeext) $(DESTDIR)$(bindir)/$(UNPROTOIZE_CROSS_NAME)$(exeext); \
            else \
-               rm -f $(bindir)/$(PROTOIZE_INSTALL_NAME)$(exeext); \
-               $(INSTALL_PROGRAM) protoize$(exeext) $(bindir)/$(PROTOIZE_INSTALL_NAME)$(exeext); \
-               rm -f $(bindir)/$(UNPROTOIZE_INSTALL_NAME)$(exeext); \
-               $(INSTALL_PROGRAM) unprotoize$(exeext) $(bindir)/$(UNPROTOIZE_INSTALL_NAME)$(exeext); \
+               rm -f $(DESTDIR)$(bindir)/$(PROTOIZE_INSTALL_NAME)$(exeext); \
+               $(INSTALL_PROGRAM) protoize$(exeext) $(DESTDIR)$(bindir)/$(PROTOIZE_INSTALL_NAME)$(exeext); \
+               rm -f $(DESTDIR)$(bindir)/$(UNPROTOIZE_INSTALL_NAME)$(exeext); \
+               $(INSTALL_PROGRAM) unprotoize$(exeext) $(DESTDIR)$(bindir)/$(UNPROTOIZE_INSTALL_NAME)$(exeext); \
            fi ; \
-           rm -f $(libsubdir)/SYSCALLS.c.X; \
-           $(INSTALL_DATA) SYSCALLS.c.X $(libsubdir)/SYSCALLS.c.X; \
-           chmod a-x $(libsubdir)/SYSCALLS.c.X; \
+           rm -f $(DESTDIR)$(libsubdir)/SYSCALLS.c.X; \
+           $(INSTALL_DATA) SYSCALLS.c.X $(DESTDIR)$(libsubdir)/SYSCALLS.c.X; \
+           chmod a-x $(DESTDIR)$(libsubdir)/SYSCALLS.c.X; \
        fi
-       -rm -f $(libsubdir)/cpp0$(exeext)
-       $(INSTALL_PROGRAM) cpp0$(exeext) $(libsubdir)/cpp0$(exeext)
-       -rm -f $(libsubdir)/tradcpp0$(exeext)
-       $(INSTALL_PROGRAM) tradcpp0$(exeext) $(libsubdir)/tradcpp0$(exeext)
+       -rm -f $(DESTDIR)$(libsubdir)/cpp0$(exeext)
+       $(INSTALL_PROGRAM) cpp0$(exeext) $(DESTDIR)$(libsubdir)/cpp0$(exeext)
+       -rm -f $(DESTDIR)$(libsubdir)/tradcpp0$(exeext)
+       $(INSTALL_PROGRAM) tradcpp0$(exeext) $(DESTDIR)$(libsubdir)/tradcpp0$(exeext)
 # Install gcov if it was compiled.
        -if [ -f gcov$(exeext) ]; \
        then \
-           rm -f $(bindir)/gcov$(exeext); \
-           $(INSTALL_PROGRAM) gcov$(exeext) $(bindir)/$(GCOV_INSTALL_NAME)$(exeext); \
+           rm -f $(DESTDIR)$(bindir)/gcov$(exeext); \
+           $(INSTALL_PROGRAM) gcov$(exeext) $(DESTDIR)$(bindir)/$(GCOV_INSTALL_NAME)$(exeext); \
        fi
-       $(INSTALL_SCRIPT) gccbug $(bindir)/$(GCCBUG_INSTALL_NAME)
+       $(INSTALL_SCRIPT) gccbug $(DESTDIR)$(bindir)/$(GCCBUG_INSTALL_NAME)
 
 # Install the driver program as $(target_alias)-gcc
 # and also as either gcc (if native) or $(gcc_tooldir)/bin/gcc.
 install-driver: installdirs xgcc$(exeext)
        -if [ -f gcc-cross$(exeext) ] ; then \
-         rm -f $(bindir)/$(GCC_CROSS_NAME)$(exeext); \
-         $(INSTALL_PROGRAM) gcc-cross$(exeext) $(bindir)/$(GCC_CROSS_NAME)$(exeext); \
-         if [ -d $(gcc_tooldir)/bin/. ] ; then \
-           rm -f $(gcc_tooldir)/bin/gcc$(exeext); \
-           $(INSTALL_PROGRAM) gcc-cross$(exeext) $(gcc_tooldir)/bin/gcc$(exeext); \
+         rm -f $(DESTDIR)$(bindir)/$(GCC_CROSS_NAME)$(exeext); \
+         $(INSTALL_PROGRAM) gcc-cross$(exeext) $(DESTDIR)$(bindir)/$(GCC_CROSS_NAME)$(exeext); \
+         if [ -d $(DESTDIR)$(gcc_tooldir)/bin/. ] ; then \
+           rm -f $(DESTDIR)$(gcc_tooldir)/bin/gcc$(exeext); \
+           $(INSTALL_PROGRAM) gcc-cross$(exeext) $(DESTDIR)$(gcc_tooldir)/bin/gcc$(exeext); \
          else true; fi; \
        else \
-         rm -f $(bindir)/$(GCC_INSTALL_NAME)$(exeext); \
-         $(INSTALL_PROGRAM) xgcc$(exeext) $(bindir)/$(GCC_INSTALL_NAME)$(exeext); \
-         rm -f $(bindir)/$(target_alias)-gcc-1$(exeext); \
-         $(LN) $(bindir)/$(GCC_INSTALL_NAME)$(exeext) $(bindir)/$(target_alias)-gcc-1$(exeext); \
-         mv $(bindir)/$(target_alias)-gcc-1$(exeext) $(bindir)/$(GCC_TARGET_INSTALL_NAME)$(exeext); \
+         rm -f $(DESTDIR)$(bindir)/$(GCC_INSTALL_NAME)$(exeext); \
+         $(INSTALL_PROGRAM) xgcc$(exeext) $(DESTDIR)$(bindir)/$(GCC_INSTALL_NAME)$(exeext); \
+         rm -f $(DESTDIR)$(bindir)/$(target_alias)-gcc-1$(exeext); \
+         ( cd $(DESTDIR)$(bindir) && \
+           $(LN) $(GCC_INSTALL_NAME)$(exeext) $(target_alias)-gcc-1$(exeext) && \
+           mv -f $(target_alias)-gcc-1$(exeext) $(GCC_TARGET_INSTALL_NAME)$(exeext) ); \
        fi
 
 # Install the info files.
 # $(INSTALL_DATA) might be a relative pathname, so we can't cd into srcdir
 # to do the install.
 install-info: doc installdirs lang.install-info
-       -rm -f $(infodir)/cpp.info* $(infodir)/gcc.info*
-       -rm -f $(infodir)/cppinternals.info* $(infodir)/gccint.info*
+       -rm -f $(DESTDIR)$(infodir)/cpp.info* $(DESTDIR)$(infodir)/gcc.info*
+       -rm -f $(DESTDIR)$(infodir)/cppinternals.info* $(DESTDIR)$(infodir)/gccint.info*
        if [ -f $(docdir)/gcc.info ]; then \
          for f in $(docdir)/cpp.info* $(docdir)/gcc.info* \
                $(docdir)/cppinternals.info* $(docdir)/gccint.info*; do \
            realfile=`echo $$f | sed -e 's|.*/\([^/]*\)$$|\1|'`; \
-           $(INSTALL_DATA) $$f $(infodir)/$$realfile; \
+           $(INSTALL_DATA) $$f $(DESTDIR)$(infodir)/$$realfile; \
          done; \
        else true; fi
        -if $(SHELL) -c 'install-info --version' >/dev/null 2>&1; then \
-         if [ -f $(infodir)/dir ] ; then \
+         if [ -f $(DESTDIR)$(infodir)/dir ] ; then \
            for f in cpp.info gcc.info gccint.info cppinternals.info; do \
-               if [ -f $(infodir)/$$f ]; then \
-                 install-info --dir-file=$(infodir)/dir $(infodir)/$$f; \
+               if [ -f $(DESTDIR)$(infodir)/$$f ]; then \
+                 install-info --dir-file=$(DESTDIR)$(infodir)/dir $(DESTDIR)$(infodir)/$$f; \
                else true; fi; \
            done; \
          else true; fi; \
        else true; fi;
-       -chmod a-x $(infodir)/cpp.info* $(infodir)/gcc.info*
-       -chmod a-x $(infodir)/cppinternals.info* $(infodir)/gccint.info*
+       -chmod a-x $(DESTDIR)$(infodir)/cpp.info* $(DESTDIR)$(infodir)/gcc.info*
+       -chmod a-x $(DESTDIR)$(infodir)/cppinternals.info* $(DESTDIR)$(infodir)/gccint.info*
 
 # Install the man pages.
 install-man: installdirs $(GENERATED_MANPAGES) lang.install-man
        -if [ -f gcc-cross$(exeext) ] ; then \
-         rm -f $(man1dir)/$(GCC_CROSS_NAME)$(man1ext); \
-         $(INSTALL_DATA) $(docdir)/gcc.1 $(man1dir)/$(GCC_CROSS_NAME)$(man1ext); \
-         chmod a-x $(man1dir)/$(GCC_CROSS_NAME)$(man1ext); \
+         rm -f $(DESTDIR)$(man1dir)/$(GCC_CROSS_NAME)$(man1ext); \
+         $(INSTALL_DATA) $(docdir)/gcc.1 $(DESTDIR)$(man1dir)/$(GCC_CROSS_NAME)$(man1ext); \
+         chmod a-x $(DESTDIR)$(man1dir)/$(GCC_CROSS_NAME)$(man1ext); \
        else \
-         rm -f $(man1dir)/$(GCC_INSTALL_NAME)$(man1ext); \
-         $(INSTALL_DATA) $(docdir)/gcc.1 $(man1dir)/$(GCC_INSTALL_NAME)$(man1ext); \
-         chmod a-x $(man1dir)/$(GCC_INSTALL_NAME)$(man1ext); \
+         rm -f $(DESTDIR)$(man1dir)/$(GCC_INSTALL_NAME)$(man1ext); \
+         $(INSTALL_DATA) $(docdir)/gcc.1 $(DESTDIR)$(man1dir)/$(GCC_INSTALL_NAME)$(man1ext); \
+         chmod a-x $(DESTDIR)$(man1dir)/$(GCC_INSTALL_NAME)$(man1ext); \
        fi
-       -rm -f $(man1dir)/cpp$(man1ext)
-       -$(INSTALL_DATA) $(docdir)/cpp.1 $(man1dir)/cpp$(man1ext)
-       -chmod a-x $(man1dir)/cpp$(man1ext)
-       -rm -f $(man1dir)/gcov$(man1ext)
-       -$(INSTALL_DATA) $(docdir)/gcov.1 $(man1dir)/gcov$(man1ext)
-       -chmod a-x $(man1dir)/gcov$(man1ext)
-       -rm -f $(man7dir)/fsf-funding$(man7ext)
-       -$(INSTALL_DATA) $(docdir)/fsf-funding.7 $(man7dir)/fsf-funding$(man7ext)
-       -chmod a-x $(man7dir)/fsf-funding$(man7ext)
-       -rm -f $(man7dir)/gfdl$(man7ext)
-       -$(INSTALL_DATA) $(docdir)/gfdl.7 $(man7dir)/gfdl$(man7ext)
-       -chmod a-x $(man7dir)/gfdl$(man7ext)
-       -rm -f $(man7dir)/gpl$(man7ext)
-       -$(INSTALL_DATA) $(docdir)/gpl.7 $(man7dir)/gpl$(man7ext)
-       -chmod a-x $(man7dir)/gpl$(man7ext)
+       -rm -f $(DESTDIR)$(man1dir)/cpp$(man1ext)
+       -$(INSTALL_DATA) $(docdir)/cpp.1 $(DESTDIR)$(man1dir)/cpp$(man1ext)
+       -chmod a-x $(DESTDIR)$(man1dir)/cpp$(man1ext)
+       -rm -f $(DESTDIR)$(man1dir)/gcov$(man1ext)
+       -$(INSTALL_DATA) $(docdir)/gcov.1 $(DESTDIR)$(man1dir)/gcov$(man1ext)
+       -chmod a-x $(DESTDIR)$(man1dir)/gcov$(man1ext)
+       -rm -f $(DESTDIR)$(man7dir)/fsf-funding$(man7ext)
+       -$(INSTALL_DATA) $(docdir)/fsf-funding.7 $(DESTDIR)$(man7dir)/fsf-funding$(man7ext)
+       -chmod a-x $(DESTDIR)$(man7dir)/fsf-funding$(man7ext)
+       -rm -f $(DESTDIR)$(man7dir)/gfdl$(man7ext)
+       -$(INSTALL_DATA) $(docdir)/gfdl.7 $(DESTDIR)$(man7dir)/gfdl$(man7ext)
+       -chmod a-x $(DESTDIR)$(man7dir)/gfdl$(man7ext)
+       -rm -f $(DESTDIR)$(man7dir)/gpl$(man7ext)
+       -$(INSTALL_DATA) $(docdir)/gpl.7 $(DESTDIR)$(man7dir)/gpl$(man7ext)
+       -chmod a-x $(DESTDIR)$(man7dir)/gpl$(man7ext)
 
 # Install the library.
 install-libgcc: libgcc.mk libgcc.a installdirs
@@ -2734,6 +2723,7 @@ install-libgcc: libgcc.mk libgcc.a installdirs
          MAKEOVERRIDES= \
          INSTALL_DATA="$(INSTALL_DATA)" \
          RANLIB_FOR_TARGET="$$r_f_t" \
+         DESTDIR="$(DESTDIR)" \
          libsubdir="$(libsubdir)" \
          slibdir="$(slibdir)" \
          -f libgcc.mk install
@@ -2760,6 +2750,7 @@ install-multilib: stmp-multilib installdirs
          MAKEOVERRIDES= \
          INSTALL_DATA="$(INSTALL_DATA)" \
          RANLIB_FOR_TARGET="$$r_f_t" \
+         DESTDIR="$(DESTDIR)" \
          libsubdir="$(libsubdir)" \
          slibdir="$(slibdir)" \
          -f libgcc.mk install
@@ -2769,23 +2760,23 @@ install-headers: $(INSTALL_HEADERS_DIR)
 # Fix symlinks to absolute paths in the installed include directory to
 # point to the installed directory, not the build directory.
 # Don't need to use LN_S here since we really do need ln -s and no substitutes.
-       -files=`cd $(libsubdir)/include; find . -type l -print 2>/dev/null`; \
+       -files=`cd $(DESTDIR)$(libsubdir)/include; find . -type l -print 2>/dev/null`; \
        if [ $$? -eq 0 ]; then \
          dir=`cd include; pwd`; \
          for i in $$files; do \
-           dest=`ls -ld $(libsubdir)/include/$$i | sed -n 's/.*-> //p'`; \
+           dest=`ls -ld $(DESTDIR)$(libsubdir)/include/$$i | sed -n 's/.*-> //p'`; \
            if expr "$$dest" : "$$dir.*" > /dev/null; then \
-             rm -f $(libsubdir)/include/$$i; \
-             ln -s `echo $$i | sed "s|/[^/]*|/..|g" | sed 's|/..$$||'``echo "$$dest" | sed "s|$$dir||"` $(libsubdir)/include/$$i; \
+             rm -f $(DESTDIR)$(libsubdir)/include/$$i; \
+             ln -s `echo $$i | sed "s|/[^/]*|/..|g" | sed 's|/..$$||'``echo "$$dest" | sed "s|$$dir||"` $(DESTDIR)$(libsubdir)/include/$$i; \
            fi; \
          done; \
        fi
 
 # Create or recreate the gcc private include file directory.
 install-include-dir: installdirs
-       -rm -rf $(libsubdir)/include
-       mkdir $(libsubdir)/include
-       -chmod a+rx $(libsubdir)/include
+       -rm -rf $(DESTDIR)$(libsubdir)/include
+       mkdir $(DESTDIR)$(libsubdir)/include
+       -chmod a+rx $(DESTDIR)$(libsubdir)/include
 
 # Install the include directory using tar.
 install-headers-tar: stmp-int-hdrs $(STMP_FIXPROTO) install-include-dir
@@ -2794,7 +2785,7 @@ install-headers-tar: stmp-int-hdrs $(STMP_FIXPROTO) install-include-dir
 # found in CDPATH, corrupting the output.  We could just redirect the
 # output of `cd', but some shells lose on redirection within `()'s
        (cd `pwd`/include ; \
-        tar -cf - .; exit 0) | (cd $(libsubdir)/include; tar xpf - )
+        tar -cf - .; exit 0) | (cd $(DESTDIR)$(libsubdir)/include; tar xpf - )
 # /bin/sh on some systems returns the status of the first tar,
 # and that can lose with GNU tar which always writes a full block.
 # So use `exit 0' to ignore its exit status.
@@ -2803,35 +2794,35 @@ install-headers-tar: stmp-int-hdrs $(STMP_FIXPROTO) install-include-dir
 install-headers-cpio: stmp-int-hdrs $(STMP_FIXPROTO) install-include-dir
 # See discussion about the use of `pwd` above
        cd `pwd`/include ; \
-       find . -print | cpio -pdum $(libsubdir)/include
+       find . -print | cpio -pdum $(DESTDIR)$(libsubdir)/include
 
 # Install the include directory using cp.
 install-headers-cp: stmp-int-hdrs $(STMP_FIXPROTO) install-include-dir
-       cp -p -r include $(libsubdir)
+       cp -p -r include $(DESTDIR)$(libsubdir)
 
 # Use this target to install the program `collect2' under the name `collect2'.
 install-collect2: collect2 installdirs
-       $(INSTALL_PROGRAM) collect2$(exeext) $(libsubdir)/collect2$(exeext)
+       $(INSTALL_PROGRAM) collect2$(exeext) $(DESTDIR)$(libsubdir)/collect2$(exeext)
 # Install the driver program as $(libsubdir)/gcc for collect2.
-       $(INSTALL_PROGRAM) xgcc$(exeext) $(libsubdir)/gcc$(exeext)
+       $(INSTALL_PROGRAM) xgcc$(exeext) $(DESTDIR)$(libsubdir)/gcc$(exeext)
 
 # Cancel installation by deleting the installed files.
 uninstall: intl.uninstall lang.uninstall $(UNINSTALL_CPP)
-       -rm -rf $(libsubdir)
-       -rm -rf $(bindir)/$(GCC_INSTALL_NAME)$(exeext)
-       -rm -rf $(bindir)/$(GCC_CROSS_NAME)$(exeext)
-       -rm -rf $(bindir)/$(PROTOIZE_INSTALL_NAME)$(exeext)
-       -rm -rf $(bindir)/$(PROTOIZE_CROSS_NAME)$(exeext)
-       -rm -rf $(bindir)/$(UNPROTOIZE_INSTALL_NAME)$(exeext)
-       -rm -rf $(bindir)/$(UNPROTOIZE_CROSS_NAME)$(exeext)
-       -rm -rf $(bindir)/$(GCOV_INSTALL_NAME)$(exeext)
-       -rm -rf $(man1dir)/$(GCC_INSTALL_NAME)$(man1ext)
-       -rm -rf $(man1dir)/$(GCC_CROSS_NAME)$(man1ext)
-       -rm -rf $(man1dir)/cpp$(man1ext)
-       -rm -rf $(man1dir)/protoize$(man1ext)
-       -rm -rf $(man1dir)/unprotoize$(man1ext)
-       -rm -f $(infodir)/cpp.info* $(infodir)/gcc.info*
-       -rm -f $(infodir)/cppinternals.info* $(infodir)/gccint.info*
+       -rm -rf $(DESTDIR)$(libsubdir)
+       -rm -rf $(DESTDIR)$(bindir)/$(GCC_INSTALL_NAME)$(exeext)
+       -rm -rf $(DESTDIR)$(bindir)/$(GCC_CROSS_NAME)$(exeext)
+       -rm -rf $(DESTDIR)$(bindir)/$(PROTOIZE_INSTALL_NAME)$(exeext)
+       -rm -rf $(DESTDIR)$(bindir)/$(PROTOIZE_CROSS_NAME)$(exeext)
+       -rm -rf $(DESTDIR)$(bindir)/$(UNPROTOIZE_INSTALL_NAME)$(exeext)
+       -rm -rf $(DESTDIR)$(bindir)/$(UNPROTOIZE_CROSS_NAME)$(exeext)
+       -rm -rf $(DESTDIR)$(bindir)/$(GCOV_INSTALL_NAME)$(exeext)
+       -rm -rf $(DESTDIR)$(man1dir)/$(GCC_INSTALL_NAME)$(man1ext)
+       -rm -rf $(DESTDIR)$(man1dir)/$(GCC_CROSS_NAME)$(man1ext)
+       -rm -rf $(DESTDIR)$(man1dir)/cpp$(man1ext)
+       -rm -rf $(DESTDIR)$(man1dir)/protoize$(man1ext)
+       -rm -rf $(DESTDIR)$(man1dir)/unprotoize$(man1ext)
+       -rm -f $(DESTDIR)$(infodir)/cpp.info* $(DESTDIR)$(infodir)/gcc.info*
+       -rm -f $(DESTDIR)$(infodir)/cppinternals.info* $(DESTDIR)$(infodir)/gccint.info*
 #\f
 # These targets are for the dejagnu testsuites. The file site.exp
 # contains global variables that all the testsuites will use.
index e9c451b9c04dfd7bc78d82161a4f294e8f5d299a..0525d617662f2908df2bb5b77ff7c8456dc91175 100644 (file)
@@ -17,6 +17,6 @@ SHLIB_LINK = $(GCC_FOR_TARGET) $(LIBGCC2_CFLAGS) -shared -nodefaultlibs \
        $(LN_S) $(SHLIB_NAME) $(SHLIB_SONAME)
 # $(slibdir) double quoted to protect it from expansion while building
 # libgcc.mk.  We want this delayed until actual install time.
-SHLIB_INSTALL = $(INSTALL_DATA) $(SHLIB_NAME) $$(slibdir)/$(SHLIB_SONAME); \
-       rm -f $$(slibdir)/$(SHLIB_NAME); \
-       $(LN_S) $(SHLIB_SONAME) $$(slibdir)/$(SHLIB_NAME)
+SHLIB_INSTALL = $(INSTALL_DATA) $(SHLIB_NAME) $$(DESTDIR)$$(slibdir)/$(SHLIB_SONAME); \
+       rm -f $$(DESTDIR)$$(slibdir)/$(SHLIB_NAME); \
+       $(LN_S) $(SHLIB_SONAME) $$(DESTDIR)$$(slibdir)/$(SHLIB_NAME)
index 34c8dd48e86df01b372659e4339ef2c785c69ee9..fd8f829248c2f7325dbdbc68f399f680fe3ba24e 100644 (file)
@@ -62,10 +62,10 @@ stmp-multilib-arc: stmp-multilib
 install-multilib-arc: install-multilib
        for i in `$(GCC_FOR_TARGET) --print-multi-lib`; do \
          dir=`echo $$i | sed -e 's/;.*$$//'`; \
-         rm -f $(libsubdir)/$${dir}/crtinit.o; \
-         $(INSTALL_DATA) $${dir}/crtinit.o $(libsubdir)/$${dir}/crtinit.o; \
-         chmod a-x $(libsubdir)/$${dir}/crtinit.o; \
-         rm -f $(libsubdir)/$${dir}/crtfini.o; \
-         $(INSTALL_DATA) $${dir}/crtfini.o $(libsubdir)/$${dir}/crtfini.o; \
-         chmod a-x $(libsubdir)/$${dir}/crtfini.o; \
+         rm -f $(DESTDIR)$(libsubdir)/$${dir}/crtinit.o; \
+         $(INSTALL_DATA) $${dir}/crtinit.o $(DESTDIR)$(libsubdir)/$${dir}/crtinit.o; \
+         chmod a-x $(DESTDIR)$(libsubdir)/$${dir}/crtinit.o; \
+         rm -f $(DESTDIR)$(libsubdir)/$${dir}/crtfini.o; \
+         $(INSTALL_DATA) $${dir}/crtfini.o $(DESTDIR)$(libsubdir)/$${dir}/crtfini.o; \
+         chmod a-x $(DESTDIR)$(libsubdir)/$${dir}/crtfini.o; \
        done
index 511b0151116c7d4826df678c0648cd85df8907fa..76e431bfb112d6fcf125724f3be1fa1fc070cf99 100644 (file)
@@ -16,9 +16,9 @@ SHLIB_LINK = $(GCC_FOR_TARGET) $(LIBGCC2_CFLAGS) -shared -nodefaultlibs \
        $(LN_S) $(SHLIB_NAME) $(SHLIB_SONAME)
 # $(slibdir) double quoted to protect it from expansion while building
 # libgcc.mk.  We want this delayed until actual install time.
-SHLIB_INSTALL = $(INSTALL_DATA) $(SHLIB_NAME) $$(slibdir)/$(SHLIB_SONAME); \
-       rm -f $$(slibdir)/$(SHLIB_NAME); \
-       $(LN_S) $(SHLIB_SONAME) $$(slibdir)/$(SHLIB_NAME)
+SHLIB_INSTALL = $(INSTALL_DATA) $(SHLIB_NAME) $$(DESTDIR)$$(slibdir)/$(SHLIB_SONAME); \
+       rm -f $$(DESTDIR)$$(slibdir)/$(SHLIB_NAME); \
+       $(LN_S) $(SHLIB_SONAME) $$(DESTDIR)$$(slibdir)/$(SHLIB_NAME)
 
 # Don't build enquire
 ENQUIRE=
index b002dd9abd71b8cea5333ec7b8a8a9e92ceb270c..f7a788c50552964474904f09600d2b069e17dd46 100644 (file)
@@ -37,12 +37,12 @@ SHLIB_LINK = $(GCC_FOR_TARGET) $(LIBGCC2_CFLAGS) -shared -nodefaultlibs \
 # $(slibdir) double quoted to protect it from expansion while building
 # libgcc.mk.  We want this delayed until actual install time.
 SHLIB_INSTALL = \
-       $$(SHELL) $$(srcdir)/mkinstalldirs $$(slibdir)$(SHLIB_SLIBDIR_QUAL); \
+       $$(SHELL) $$(srcdir)/mkinstalldirs $$(DESTDIR)$$(slibdir)$(SHLIB_SLIBDIR_QUAL); \
        $(INSTALL_DATA) $(SHLIB_NAME) \
-         $$(slibdir)$(SHLIB_SLIBDIR_QUAL)/$(SHLIB_SONAME); \
-       rm -f $$(slibdir)$(SHLIB_SLIBDIR_QUAL)/$(SHLIB_SOLINK); \
+         $$(DESTDIR)$$(slibdir)$(SHLIB_SLIBDIR_QUAL)/$(SHLIB_SONAME); \
+       rm -f $$(DESTDIR)$$(slibdir)$(SHLIB_SLIBDIR_QUAL)/$(SHLIB_SOLINK); \
        $(LN_S) $(SHLIB_SONAME) \
-         $$(slibdir)$(SHLIB_SLIBDIR_QUAL)/$(SHLIB_SOLINK)
+         $$(DESTDIR)$$(slibdir)$(SHLIB_SLIBDIR_QUAL)/$(SHLIB_SOLINK)
 SHLIB_MKMAP = $(srcdir)/mkmap-flat.awk
 SHLIB_MAPFILES = $(srcdir)/libgcc-std.ver 
 
index 52c3fd90c4f3d14603ec0ee2df14873d5d08220b..1c924497c0bea34464c90b5db360ab35a1e6c924 100644 (file)
@@ -13,7 +13,7 @@ SHLIB_LINK = $(GCC_FOR_TARGET) $(LIBGCC2_CFLAGS) -shared  -nodefaultlibs \
 # $(slibdir) double quoted to protect it from expansion while building
 # libgcc.mk.  We want this delayed until actual install time.
 SHLIB_INSTALL = $(INSTALL_DATA) -m 555 $(SHLIB_NAME) \
-       $$(slibdir)/$(SHLIB_SONAME); \
-        rm -f $$(slibdir)/$(SHLIB_NAME); \
-        $(LN_S) $(SHLIB_SONAME) $$(slibdir)/$(SHLIB_NAME)
+       $$(DESTDIR)$$(slibdir)/$(SHLIB_SONAME); \
+        rm -f $$(DESTDIR)$$(slibdir)/$(SHLIB_NAME); \
+        $(LN_S) $(SHLIB_SONAME) $$(DESTDIR)$$(slibdir)/$(SHLIB_NAME)
 
index 7be8ebc474f8b3f548aadba03c991d6bc5cb7d97..9bbfe0042d99bcafd208ed0f0e5054f597523810 100644 (file)
@@ -58,7 +58,7 @@ SHLIB_LINK = $(GCC_FOR_TARGET) $(LIBGCC2_CFLAGS) -shared -nodefaultlibs \
        rm -f @multilib_dir@/shr.o
 # $(slibdir) double quoted to protect it from expansion while building
 # libgcc.mk.  We want this delayed until actual install time.
-SHLIB_INSTALL = $(INSTALL_DATA) @shlib_base_name@.a $$(slibdir)/
+SHLIB_INSTALL = $(INSTALL_DATA) @shlib_base_name@.a $$(DESTDIR)$$(slibdir)/
 SHLIB_LIBS = -lc `case @shlib_base_name@ in *pthread*) echo -lpthread ;; esac`
 SHLIB_MKMAP = $(srcdir)/mkmap-flat.awk
 SHLIB_MAPFILES = $(srcdir)/libgcc-std.ver
index c02ff9d6b7c7acfd4f55596929ecfd34f5745cac..a176b10fa0abd044fa40b502342cd440dfd2cca7 100644 (file)
@@ -19,11 +19,11 @@ SHLIB_LINK = $(GCC_FOR_TARGET) $(LIBGCC2_CFLAGS) -shared -nodefaultlibs \
 # $(slibdir) double quoted to protect it from expansion while building
 # libgcc.mk.  We want this delayed until actual install time.
 SHLIB_INSTALL = \
-       $$(SHELL) $$(srcdir)/mkinstalldirs $$(slibdir)$(SHLIB_SLIBDIR_QUAL); \
+       $$(SHELL) $$(srcdir)/mkinstalldirs $$(DESTDIR)$$(slibdir)$(SHLIB_SLIBDIR_QUAL); \
        $(INSTALL_DATA) $(SHLIB_NAME) \
-         $$(slibdir)$(SHLIB_SLIBDIR_QUAL)/$(SHLIB_SONAME); \
-       rm -f $$(slibdir)$(SHLIB_SLIBDIR_QUAL)/$(SHLIB_SOLINK); \
+         $$(DESTDIR)$$(slibdir)$(SHLIB_SLIBDIR_QUAL)/$(SHLIB_SONAME); \
+       rm -f $$(DESTDIR)$$(slibdir)$(SHLIB_SLIBDIR_QUAL)/$(SHLIB_SOLINK); \
        $(LN_S) $(SHLIB_SONAME) \
-         $$(slibdir)$(SHLIB_SLIBDIR_QUAL)/$(SHLIB_SOLINK)
+         $$(DESTDIR)$$(slibdir)$(SHLIB_SLIBDIR_QUAL)/$(SHLIB_SOLINK)
 SHLIB_MKMAP = $(srcdir)/mkmap-symver.awk
 SHLIB_MAPFILES = $(srcdir)/libgcc-std.ver
index c11a572196681a69e269b079bcb7aa1423b59e6e..6bdd521da1be17b5308afb99b97907c5082c9b07 100644 (file)
@@ -17,11 +17,11 @@ SHLIB_LINK = $(GCC_FOR_TARGET) $(LIBGCC2_CFLAGS) -shared -nodefaultlibs \
 # $(slibdir) double quoted to protect it from expansion while building
 # libgcc.mk.  We want this delayed until actual install time.
 SHLIB_INSTALL = \
-       $$(SHELL) $$(srcdir)/mkinstalldirs $$(slibdir)$(SHLIB_SLIBDIR_QUAL); \
+       $$(SHELL) $$(srcdir)/mkinstalldirs $$(DESTDIR)$$(slibdir)$(SHLIB_SLIBDIR_QUAL); \
        $(INSTALL_DATA) $(SHLIB_NAME) \
-         $$(slibdir)$(SHLIB_SLIBDIR_QUAL)/$(SHLIB_SONAME); \
-       rm -f $$(slibdir)$(SHLIB_SLIBDIR_QUAL)/$(SHLIB_SOLINK); \
+         $$(DESTDIR)$$(slibdir)$(SHLIB_SLIBDIR_QUAL)/$(SHLIB_SONAME); \
+       rm -f $$(DESTDIR)$$(slibdir)$(SHLIB_SLIBDIR_QUAL)/$(SHLIB_SOLINK); \
        $(LN_S) $(SHLIB_SONAME) \
-         $$(slibdir)$(SHLIB_SLIBDIR_QUAL)/$(SHLIB_SOLINK)
+         $$(DESTDIR)$$(slibdir)$(SHLIB_SLIBDIR_QUAL)/$(SHLIB_SOLINK)
 SHLIB_MKMAP = $(srcdir)/mkmap-symver.awk
 SHLIB_MAPFILES = $(srcdir)/libgcc-std.ver
index 30f660c4be1ad0c3c524b63fd34bfd4dd959c442..cde944341afdb960492e4a03fb41ec9420c2be40 100644 (file)
@@ -436,10 +436,10 @@ for ml in $MULTILIBS; do
   dir=`echo ${ml} | sed -e 's/;.*$//' -e 's/=/$(EQ)/g'`
   flags=`echo ${ml} | sed -e 's/^[^;]*;//' -e 's/@/ -/g'`;
   if [ $dir != . ]; then
-    ldir='$(libsubdir)'/$dir
+    ldir='$(DESTDIR)$(libsubdir)'/$dir
     echo "     if [ -d $ldir ]; then true; else mkdir $ldir; chmod a+rx $ldir; fi;"
   else
-    ldir='$(libsubdir)'
+    ldir='$(DESTDIR)$(libsubdir)'
   fi
   echo '       $(INSTALL_DATA)' ${dir}/libgcc.a ${ldir}/
   echo '       $(RANLIB_FOR_TARGET)' ${ldir}/libgcc.a
@@ -495,10 +495,10 @@ for f in $EXTRA_MULTILIB_PARTS; do
     dir=`echo ${ml} | sed -e 's/;.*$//' -e 's/=/$(EQ)/g'`
     if [ $dir != . ]; then
       out=${dir}/$f
-      ldir='$(libsubdir)'/$dir
+      ldir='$(DESTDIR)$(libsubdir)'/$dir
     else
       out=$f
-      ldir='$(libsubdir)'
+      ldir='$(DESTDIR)$(libsubdir)'
     fi
     echo '     $(INSTALL_DATA)' $out $ldir/
   done