From 35120caf80f7571e00a9b8924cfe18d49843cff8 Mon Sep 17 00:00:00 2001 From: Wolfgang Bumiller Date: Sat, 27 Apr 2013 17:00:27 +0200 Subject: [PATCH] debian Makefile had the same flaw as archlinux/this... fixing --- distro/deb/Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/distro/deb/Makefile b/distro/deb/Makefile index df23602..7594400 100644 --- a/distro/deb/Makefile +++ b/distro/deb/Makefile @@ -10,12 +10,14 @@ DEB := $(DEBDIR)-$(CARCH).deb CONTROL := $(DEBDIR)/DEBIAN/control ifneq (, $(findstring i686, $(CARCH))) - CFLAGS := -m32 + CFLAGS += -m32 + LDFLAGS += -m32 endif base: $(MAKE) -C $(BASEDIR) clean - $(MAKE) -C $(BASEDIR) DESTDIR=distro/deb/$(DEBDIR) PREFIX=$(PREFIX) install + CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)" \ + $(MAKE) -C $(BASEDIR) DESTDIR=distro/deb/$(DEBDIR) PREFIX=$(PREFIX) install @install -d -m755 $(DEBDIR)/DEBIAN @echo "Package: gmqcc" > $(CONTROL) @echo "Version: $(MAJOR).$(MINOR).$(PATCH)" >> $(CONTROL) -- 2.39.2