diff options
author | David I. Lehn <dlehn@users.sourceforge.net> | 2002-03-21 08:33:23 +0000 |
---|---|---|
committer | David I. Lehn <dlehn@users.sourceforge.net> | 2002-03-21 08:33:23 +0000 |
commit | a83ddf8f5cda6271795f9b29470145192fb82eb5 (patch) | |
tree | 0175fc2a48459789c2bd2c6835506a76656c8ce5 /debian/rules | |
parent | b0c01cddf9efa465a6edf78dc089a243531cd8c4 (diff) | |
download | gst-plugins-bad-a83ddf8f5cda6271795f9b29470145192fb82eb5.tar.gz gst-plugins-bad-a83ddf8f5cda6271795f9b29470145192fb82eb5.tar.bz2 gst-plugins-bad-a83ddf8f5cda6271795f9b29470145192fb82eb5.zip |
0.3.3-1 packaging update for -2: control: s/0.3.2/0.3.3/ for -runtime version dep
Original commit message from CVS:
0.3.3-1 packaging update
for -2: control: s/0.3.2/0.3.3/ for -runtime version dep
Diffstat (limited to 'debian/rules')
-rw-r--r-- | debian/rules | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/debian/rules b/debian/rules index dfcdd65c..f01304a5 100644 --- a/debian/rules +++ b/debian/rules @@ -31,18 +31,27 @@ setup-links: export DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) export DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) +ifeq ($(DEB_BUILD_GNU_TYPE), $(DEB_HOST_GNU_TYPE)) + confflags += --build $(DEB_HOST_GNU_TYPE) +else + confflags += --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE) +endif + configure: configure-stamp configure-stamp: dh_testdir + + # make sure we're using a ltmain.sh that can handle relinking + # in case autogen.sh (and libtoolize) was run + cp ltmain-fixed.sh ltmain.sh + # Add here commands to configure the package. ./configure \ - --build=$(DEB_BUILD_GNU_TYPE) \ - --host=$(DEB_HOST_GNU_TYPE) \ + $(confflags) \ --prefix=/usr \ --mandir=\$${prefix}/share/man \ --infodir=\$${prefix}/share/info \ --sysconfdir=/etc \ - --with-configdir=/etc/gstreamer \ --disable-plugin-builddir \ --disable-tests \ --disable-examples \ |