]> andersk Git - nss_nonlocal.git/commitdiff
Install lib32nss-nonlocal to the right place on Ubuntu.
authorAnders Kaseorg <andersk@mit.edu>
Wed, 23 Jun 2010 07:47:39 +0000 (03:47 -0400)
committerAnders Kaseorg <andersk@mit.edu>
Wed, 23 Jun 2010 07:49:55 +0000 (03:49 -0400)
Apparently make is picky about whitespace.  This was fixed by removing
spaces between function arguments in debian/rules.

Signed-off-by: Anders Kaseorg <andersk@mit.edu>
debian/changelog
debian/rules

index 522c7717ce6c0e4e4ed9e9c1cf64cbfc15397478..824314d72fe26fb94dd5c529882aac7d723a117c 100644 (file)
@@ -1,3 +1,9 @@
+libnss-nonlocal (1.11-0debathena2) UNRELEASED; urgency=low
+
+  * Install lib32nss-nonlocal to the right place on Ubuntu.
+
+ -- Anders Kaseorg <andersk@mit.edu>  Wed, 23 Jun 2010 03:44:38 -0400
+
 libnss-nonlocal (1.11-0debathena1) unstable; urgency=low
 
   * New upstream release.
index 7772ac4b30a7bb859b036c701af739eeb376347b..0598e896fa8c3981a7ab42949e9c149093c1702c 100755 (executable)
@@ -17,11 +17,11 @@ DEB_DESTDIR = $(CURDIR)/debian/tmp/
 DEB_DH_INSTALL_SOURCEDIR = $(DEB_DESTDIR)
 DEB_CONFIGURE_PREFIX = /
 
-IS_UBUNTU := $(if $(filter Ubuntu, $(shell lsb_release -is)), y)
+IS_UBUNTU := $(if $(filter Ubuntu,$(shell lsb_release -is)),y)
 LIBC6_VERSION := $(shell dpkg-query --showformat='$${Version}' --show libc6)
 libc6_ge = $(shell dpkg --compare-versions '$(LIBC6_VERSION)' ge '$(1)' && echo y)
 
-ifeq ($(call libc6_ge, 2.8+20080809), y)
+ifeq ($(call libc6_ge,2.8+20080809),y)
     DEB_DH_SHLIBDEPS_ARGS = -- -xglibc-private
 endif
 
@@ -39,7 +39,7 @@ DEB_BUILDDIR_lib32nss-nonlocal = debian/build_32
 cleanbuilddir/lib32nss-nonlocal:: clean/lib32nss-nonlocal
 configure/lib32nss-nonlocal:: cdbs_crossbuild =
 # i386_configure_target in eglibc/debian/sysdeps/amd64.mk
-ifeq ($(or $(IS_UBUNTU), $(call libc6_ge, 2.8+20080809)), y)
+ifeq ($(or $(IS_UBUNTU),$(call libc6_ge,2.8+20080809)),y)
 configure/lib32nss-nonlocal:: DEB_BUILD_GNU_TYPE = i686-linux
 else
 configure/lib32nss-nonlocal:: DEB_BUILD_GNU_TYPE = i486-linux
@@ -47,7 +47,7 @@ endif
 # i386_CC in eglibc/debian/sysdeps/amd64.mk
 configure/lib32nss-nonlocal:: CC += -m32
 # i386_slibdir in eglibc/debian/sysdeps/amd64.mk
-ifeq ($(or $(IS_UBUNTU), $(call libc6_ge, 2.9-14~)), y)
+ifeq ($(or $(IS_UBUNTU),$(call libc6_ge,2.9-14~)),y)
 configure/lib32nss-nonlocal:: DEB_CONFIGURE_EXTRA_FLAGS += --libdir="\$${prefix}/lib32"
 binary-install/lib32nss-nonlocal:: DEB_DH_INSTALL_ARGS = 'lib32/*'
 else
This page took 0.088709 seconds and 5 git commands to generate.