summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-08-17 17:15:27 +0000
committerMatt Wilson <msw@redhat.com>1999-08-17 17:15:27 +0000
commit0aff4622f30b48841a137f344eb2dbf487139414 (patch)
tree2d75a344e3d38cb38406a66cc9944c99fe1b2aa8
parentd8ad37b30feeaf286df5fae92f636a5a2da53623 (diff)
downloadanaconda-0aff4622f30b48841a137f344eb2dbf487139414.tar.gz
anaconda-0aff4622f30b48841a137f344eb2dbf487139414.tar.xz
anaconda-0aff4622f30b48841a137f344eb2dbf487139414.zip
fixed symbol stuff
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index ce733ed67..f52349960 100644
--- a/Makefile
+++ b/Makefile
@@ -9,7 +9,8 @@ ALLSUBDIRS = $(SUBDIRS) $(BUILDONLYSUBDIRS)
all: subdirs _xkb.so $(CATALOGS)
_xkb.so: xkb.c
- gcc -o _xkb.so -shared -I/usr/include/python1.5 xkb.c
+ gcc -o _xkb.o -fPIC -I/usr/include/python1.5 -c xkb.c
+ gcc -o _xkb.so -shared _xkb.o /usr/X11R6/lib/libxkbfile.a
clean:
for d in $(ALLSUBDIRS); do make TOPDIR=../$(TOPDIR) -C $$d clean; done