From: Alejandro PiƱeiro Date: Wed, 22 Oct 2008 17:26:12 +0000 (+0000) Subject: 2008-10-22 Alejandro Pinheiro X-Git-Tag: 2.1.66-1~416 X-Git-Url: https://vcs.maemo.org/git/?a=commitdiff_plain;h=7e6d52bd936e70147a863bc15df28e0eb3ac9d18;p=hildon 2008-10-22 Alejandro Pinheiro * debian/rules: Fixed a error in order to avoid unnecessary calls to autogen.sh on package building --- diff --git a/ChangeLog b/ChangeLog index 6bca070..5bc80c1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-10-22 Alejandro Pinheiro + + * debian/rules: Fixed a error in order to avoid unnecessary calls + to autogen.sh on package building + 2008-10-22 Alberto Garcia * examples/hildon-app-menu-example.c: Add keyboard accelerator. diff --git a/debian/rules b/debian/rules index 5727d55..a21ac86 100755 --- a/debian/rules +++ b/debian/rules @@ -7,5 +7,9 @@ include /usr/share/cdbs/1/rules/utils.mk DEB_CONFIGURE_SCRIPT_ENV += LDFLAGS="-Wl,-O1 -Wl,--as-needed" PKG_CONFIG_PATH=/usr/lib/pkgconfig:/usr/share/pkgconfig DEB_CONFIGURE_EXTRA_FLAGS := --enable-gtk-doc -makebuilddir:: - AUTOGEN_SUBDIR_MODE=1 NOCONFIGURE=yes ./autogen.sh +SOURCE_DIR=$(CURDIR) + +config.status: $(SOURCE_DIR)/configure + +$(SOURCE_DIR)/configure: + AUTOGEN_SUBDIR_MODE=1 NOCONFIGURE=yes $(SOURCE_DIR)/autogen.sh