diff options
author | Matt Wilson <msw@redhat.com> | 1999-08-17 17:15:27 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-08-17 17:15:27 +0000 |
commit | 0aff4622f30b48841a137f344eb2dbf487139414 (patch) | |
tree | 2d75a344e3d38cb38406a66cc9944c99fe1b2aa8 | |
parent | d8ad37b30feeaf286df5fae92f636a5a2da53623 (diff) | |
download | anaconda-0aff4622f30b48841a137f344eb2dbf487139414.tar.gz anaconda-0aff4622f30b48841a137f344eb2dbf487139414.tar.xz anaconda-0aff4622f30b48841a137f344eb2dbf487139414.zip |
fixed symbol stuff
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 |