~daniel-mehrmann/e2fsprogs/master

« back to all changes in this revision

Viewing changes to lib/Makefile.elf-lib

  • Committer: Package Import Robot
  • Author(s): Dmitrijs Ledkovs
  • Date: 2012-06-14 13:01:21 UTC
  • mfrom: (8.4.18 sid)
  • Revision ID: package-import@ubuntu.com-20120614130121-t2gct0d09jepx0y6
Tags: 1.42.4-3ubuntu1
* Merge from Debian unstable (LP: #978012), remainging changes:
  - debian/control.in: 
      Build-depend on gettext:any instead of on gettext for (cross-building)
      Drop build dependency on dc, which hasn't been needed for some time.
      Update maintainer field.
  - debian/rules:
      Block pkg-create-dbgsym from operating on this package.
      Build without dietlibc-dev, which is in universe 
  - debian/control:
      Regenerate with ./debian/rules debian/control

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
 
41
41
installdirs:: installdirs-elf-lib
42
42
 
43
 
install-shlibs install:: $(ELF_LIB) installdirs-elf-lib
 
43
install-shlibs install:: $(ELF_LIB) installdirs-elf-lib $(DEP_INSTALL_SYMLINK)
44
44
        $(E) "  INSTALL-ELF-LIB $(ELF_INSTALL_DIR)/$(ELF_LIB)"
45
45
        $(Q) $(INSTALL_PROGRAM) $(ELF_LIB) $(DESTDIR)$(ELF_INSTALL_DIR)/$(ELF_LIB)
46
46
        $(E) "  SYMLINK $(ELF_INSTALL_DIR)/$(ELF_SONAME)"
47
 
        $(Q) $(LN_S) -f $(ELF_LIB) $(DESTDIR)$(ELF_INSTALL_DIR)/$(ELF_SONAME)
 
47
        $(Q) $(INSTALL_SYMLINK) $(ELF_INSTALL_DIR)/$(ELF_LIB) \
 
48
                $(ELF_INSTALL_DIR)/$(ELF_SONAME) $(DESTDIR)
48
49
        $(E) "  SYMLINK $(libdir)/$(ELF_IMAGE).so"
49
 
        $(Q) if test "$(ELF_INSTALL_DIR)" = "$(libdir)"; then \
50
 
                $(LN_S) -f $(ELF_SONAME) $(DESTDIR)$(libdir)/$(ELF_IMAGE).so ; \
51
 
        else \
52
 
                $(LN_S) -f $(ELF_INSTALL_DIR)/$(ELF_SONAME) \
53
 
                        $(DESTDIR)$(libdir)/$(ELF_IMAGE).so; \
54
 
        fi                      
 
50
        $(Q) $(INSTALL_SYMLINK) $(ELF_INSTALL_DIR)/$(ELF_SONAME) \
 
51
                $(libdir)/$(ELF_IMAGE).so $(DESTDIR)
55
52
        $(E) "  LDCONFIG"
56
53
        $(Q) -$(LDCONFIG)
57
54