You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
568 B

  1. Author: Nobuhiro Iwamatsu <iwamatsu@debian.org>
  2. Description: Avoid setting Intel Architecture specific CFLAGS (Closes: #638925).
  3. diff -Naurp keyutils.orig/Makefile keyutils/Makefile
  4. --- keyutils.orig/Makefile 2011-08-22 11:51:20.521464216 +0200
  5. +++ keyutils/Makefile 2011-08-24 19:17:09.855361713 +0200
  6. @@ -56,12 +56,10 @@ BUILDFOR := $(shell file /usr/bin/make |
  7. LNS := ln -sf
  8. ifeq ($(BUILDFOR),32-bit)
  9. -CFLAGS += -m32
  10. LIBDIR := /lib
  11. USRLIBDIR := /usr/lib
  12. else
  13. ifeq ($(BUILDFOR),64-bit)
  14. -CFLAGS += -m64
  15. LIBDIR := /lib64
  16. USRLIBDIR := /usr/lib64
  17. endif