r10526 - in /packages/unstable/human-icon-theme/debian: changelog rules

lool at users.alioth.debian.org lool at users.alioth.debian.org
Sat Apr 28 08:46:29 UTC 2007


Author: lool
Date: Sat Apr 28 08:46:29 2007
New Revision: 10526

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=10526
Log:
* Fix Makefile logic for DISTRO default fallback.

Modified:
    packages/unstable/human-icon-theme/debian/changelog
    packages/unstable/human-icon-theme/debian/rules

Modified: packages/unstable/human-icon-theme/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/unstable/human-icon-theme/debian/changelog?rev=10526&op=diff
==============================================================================
--- packages/unstable/human-icon-theme/debian/changelog (original)
+++ packages/unstable/human-icon-theme/debian/changelog Sat Apr 28 08:46:29 2007
@@ -24,6 +24,7 @@
   [ Loic Minier ]
   * Add missing build-dep on gnome-pkg-tools.
   * Build-depend on libxml-parser-perl instead of intltool.
+  * Fix Makefile logic for DISTRO default fallback.
 
- -- Alan Baghumian <alan at technotux.org>  Thu, 26 Apr 2007 16:30:02 +0330
+ -- Loic Minier <lool at dooz.org>  Sat, 28 Apr 2007 10:46:03 +0200
 

Modified: packages/unstable/human-icon-theme/debian/rules
URL: http://svn.debian.org/wsvn/pkg-gnome/packages/unstable/human-icon-theme/debian/rules?rev=10526&op=diff
==============================================================================
--- packages/unstable/human-icon-theme/debian/rules (original)
+++ packages/unstable/human-icon-theme/debian/rules Sat Apr 28 08:46:29 2007
@@ -5,10 +5,12 @@
 include /usr/share/gnome-pkg-tools/1/rules/uploaders.mk
 include /usr/share/cdbs/1/rules/simple-patchsys.mk
 
-DISTRO=$(shell lsb_release -si)
+DISTRO := $(shell lsb_release -si)
 
 # Anyway, defaults to Debian
--test -z ${DISTRO} && DISTRO="Debian"
+ifeq ($(DISTRO),)
+DISTRO := Debian
+endif
 
 clean::
 	echo ${DISTRO}




More information about the pkg-gnome-commits mailing list