summaryrefslogtreecommitdiffstats
path: root/isomd5sum/Makefile
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2007-01-18 21:51:57 +0000
committerJeremy Katz <katzj@redhat.com>2007-01-18 21:51:57 +0000
commitcdf4c0dab3e68ed531533ab6ec11a0f086a3d8c8 (patch)
treec11ee57083b6242ec4c1e0d434ad2b47b973b3dd /isomd5sum/Makefile
parent79f74e971e4ceb6002ff6c9620ac4b8d55a1f11f (diff)
downloadanaconda-cdf4c0dab3e68ed531533ab6ec11a0f086a3d8c8.tar.gz
anaconda-cdf4c0dab3e68ed531533ab6ec11a0f086a3d8c8.tar.xz
anaconda-cdf4c0dab3e68ed531533ab6ec11a0f086a3d8c8.zip
2007-01-18 Jeremy Katz <katzj@redhat.com>
* Makefile.inc (M32FLAGS): Make it trivial to do a 32bit build on a 64bit host * wlite/GNUmakefile (CDFLAGS): Use M32FLAGS * isomd5sum/Makefile (CFLAGS): Use -fPIC
Diffstat (limited to 'isomd5sum/Makefile')
-rw-r--r--isomd5sum/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/isomd5sum/Makefile b/isomd5sum/Makefile
index f77c7b2d7..654c59b5b 100644
--- a/isomd5sum/Makefile
+++ b/isomd5sum/Makefile
@@ -1,10 +1,10 @@
include ../Makefile.inc
-CFLAGS += -I$(PYTHONINCLUDE)
+CFLAGS += -I$(PYTHONINCLUDE) -fPIC
OBJECTS = md5.o libimplantisomd5.o checkisomd5.o pyisomd5sum.c \
implantisomd5 checkisomd5
SOURCES = $(patsubst %.o,%.c,$(OBJECTS))
-LDFLAGS += -lpopt
+LDFLAGS += -lpopt -fPIC
PYOBJS = pyisomd5sum.o libcheckisomd5.o libimplantisomd5.o md5.o