1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-20 12:58:08 +01:00

Invoke ./configure with correct --build argument.

Invoke ./configure with correct --build argument, as per
/usr/share/doc/autotools-dev/README.Debian.gz.
This commit is contained in:
Andreas Metzler
2010-08-07 14:34:50 +02:00
committed by Carlos R. Mafra
parent dadb78b835
commit de48a9b1f5
2 changed files with 17 additions and 1 deletions

2
debian/changelog vendored
View File

@@ -6,6 +6,8 @@ wmaker (0.92.0-9) unstable; urgency=low
debhelper-but-no-misc-depends)
+ [debian/control] Move homepage from description text to homepage
field. (Lintian description-contains-homepage)
* Invoke ./configure mit correct --build argument, as per
/usr/share/doc/autotools-dev/README.Debian.gz.
-- Andreas Metzler <ametzler@debian.org> Sat, 07 Aug 2010 10:56:00 +0200

16
debian/rules vendored
View File

@@ -21,6 +21,19 @@ ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS)))
CFLAGS += -DDEBUG
endif
# These are used for cross-compiling and for saving the configure script
# from having to guess our platform (since we know it already)
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))
HOSTSPEC := --build $(DEB_HOST_GNU_TYPE)
else
HOSTSPEC := --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE)
endif
LINGUAS := $(patsubst po/%.po, %, $(wildcard po/*.po))
#LINGUAS := $(filter-out zh_TW.Big5, $(LINGUAS))
@@ -42,7 +55,8 @@ XINERAMA := --enable-xinerama
WMAKER_OPTIONS := $(XLOCALE) $(MODELOCK) $(XINERAMA) \
$(USERMENU) $(SHAPE_EXT) $(USE_SHM) \
$(USE_XPM) $(USE_PNG) $(USE_JPEG) $(USE_GIF) $(USE_TIFF)
$(USE_XPM) $(USE_PNG) $(USE_JPEG) $(USE_GIF) $(USE_TIFF) \
$(HOSTSPEC)
TOPSRCDIR := $(shell pwd)
DEBTMPDIR := $(TOPSRCDIR)/debian/wmaker