[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

r846 - in glibc-package/trunk/debian: . rules.d sysdeps



Author: gotom
Date: 2004-12-23 08:49:21 -0700 (Thu, 23 Dec 2004)
New Revision: 846

Modified:
   glibc-package/trunk/debian/changelog
   glibc-package/trunk/debian/rules.d/debhelper.mk
   glibc-package/trunk/debian/sysdeps/amd64.mk
Log:
    - debian/sysdeps/amd64.mk: Add /lib64 and /usr/lib64 symlinks which are
      provided by glibc instead of base-files for amd64.  Requested by Goswin
      Brederlow <brederlo@informatik.uni-tuebingen.de>.  (Closes: #259302)
    - debian/rules.d/debhelper.mk: Replace from extra_pkg_install to
      extra_debhelper_pkg_install rule which are used for debhelper.mk only.



Modified: glibc-package/trunk/debian/changelog
===================================================================
--- glibc-package/trunk/debian/changelog	2004-12-23 15:32:50 UTC (rev 845)
+++ glibc-package/trunk/debian/changelog	2004-12-23 15:49:21 UTC (rev 846)
@@ -15,6 +15,12 @@
         gcc-3.3_3.3.5-4.
       - debian/control: Likewise.
 
+    - debian/sysdeps/amd64.mk: Add /lib64 and /usr/lib64 symlinks which are
+      provided by glibc instead of base-files for amd64.  Requested by Goswin
+      Brederlow <brederlo@informatik.uni-tuebingen.de>.  (Closes: #259302)
+    - debian/rules.d/debhelper.mk: Replace from extra_pkg_install to
+      extra_debhelper_pkg_install rule which are used for debhelper.mk only.
+
     - debian/local/manpages/locale.1: Add the description about
       /usr/share/i18n/SUPPORTED.  Requested by Guillermo S. Romero
       <gsromero@alumnos.euitt.upm.es>.  (Closes: #284137)

Modified: glibc-package/trunk/debian/rules.d/debhelper.mk
===================================================================
--- glibc-package/trunk/debian/rules.d/debhelper.mk	2004-12-23 15:32:50 UTC (rev 845)
+++ glibc-package/trunk/debian/rules.d/debhelper.mk	2004-12-23 15:49:21 UTC (rev 846)
@@ -17,7 +17,7 @@
 	install --mode=0644 build-tree/$(DEB_HOST_ARCH)-libc/libresolv.map debian/$(libc)-pic/usr/lib/libresolv_pic.map
 
 # Some per-package extra files to install.
-define $(libc)_extra_pkg_install
+define $(libc)_extra_debhelper_pkg_install
 	install --mode=0644 $(DEB_SRCDIR)/ChangeLog debian/$(curpass)/usr/share/doc/$(curpass)/changelog
 	install --mode=0644 $(DEB_SRCDIR)/linuxthreads/README debian/$(curpass)/usr/share/doc/$(curpass)/README.linuxthreads
 	install --mode=0644 $(DEB_SRCDIR)/linuxthreads/ChangeLog debian/$(curpass)/usr/share/doc/$(curpass)/ChangeLog.linuxthreads
@@ -32,11 +32,11 @@
 	install --mode=0644 debian/FAQ debian/$(curpass)/usr/share/doc/$(curpass)/README.Debian
 endef
 
-define locales_extra_pkg_install
+define locales_extra_debhelper_pkg_install
 	install --mode=0644 $(DEB_SRCDIR)/localedata/ChangeLog debian/$(curpass)/usr/share/doc/$(curpass)/changelog
 endef
 
-define glibc-doc_extra_pkg_install
+define glibc-doc_extra_debhelper_pkg_install
 	install --mode=0644 $(DEB_SRCDIR)/ChangeLog debian/$(curpass)/usr/share/doc/$(curpass)/changelog
 	install --mode=0644 $(DEB_SRCDIR)/linuxthreads/FAQ.html debian/$(curpass)/usr/share/doc/$(curpass)/FAQ.linuxthreads.html
 endef
@@ -64,6 +64,9 @@
 	dh_installdocs -p$(curpass) 
 	dh_link -p$(curpass)
 
+	# extra_debhelper_pkg_install is used for debhelper.mk only.
+	# when you want to install extra packages, use extra_pkg_install.
+	$(call xx,extra_debhelper_pkg_install)
 	$(call xx,extra_pkg_install)
 
 ifeq ($(filter nostrip,$(DEB_BUILD_OPTIONS)),)

Modified: glibc-package/trunk/debian/sysdeps/amd64.mk
===================================================================
--- glibc-package/trunk/debian/sysdeps/amd64.mk	2004-12-23 15:32:50 UTC (rev 845)
+++ glibc-package/trunk/debian/sysdeps/amd64.mk	2004-12-23 15:49:21 UTC (rev 846)
@@ -12,3 +12,9 @@
 ifeq ($(BUILD_CC_VERSION),3.4)
 	libc_extra_cflags += -g0
 endif
+
+# /lib64 and /usr/lib64 are provided by glibc instead base-files: #259302.
+define libc6_extra_pkg_install
+ln -sf lib debian/$(curpass)/lib64
+ln -sf lib debian/$(curpass)/usr/lib64
+endef



Reply to: