diff options
author | Matt Wilson <msw@redhat.com> | 2000-10-21 11:56:36 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2000-10-21 11:56:36 +0000 |
commit | e9f2aa4ce4009eff5b030f52ce810522caf7ec45 (patch) | |
tree | e5365beb9dd24da3bc4d490cc365e8841e5f8c5f | |
parent | aec3d08a64fc5f845645455921fbc2d1d5548404 (diff) | |
download | anaconda-e9f2aa4ce4009eff5b030f52ce810522caf7ec45.tar.gz anaconda-e9f2aa4ce4009eff5b030f52ce810522caf7ec45.tar.xz anaconda-e9f2aa4ce4009eff5b030f52ce810522caf7ec45.zip |
don't depend on kudzu
-rw-r--r-- | isys/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/isys/Makefile b/isys/Makefile index 125bae048..cb30fd884 100644 --- a/isys/Makefile +++ b/isys/Makefile @@ -8,7 +8,6 @@ OBJECTS = nfsmount.o dns.o nfsmount_clnt.o nfsmount_xdr.o imount.o \ lang.o SOURCES = $(patsubst %.o,%.c,$(OBJECTS)) isys.c STATICOBJS = otherinsmod.o -STATICLIBS = /usr/lib/python1.5/site-packages/kudzumodule.so LOADLIBES = -lbz2 -lresolv -lz -lpci -lpopt -L../pump -lpump -lext2fs PYMODULES = _isys.so SUBDIRS = modutils @@ -30,8 +29,8 @@ everything: $(TARGET) all: subdirs $(PYMODULES) libisys.a -_isys.so: isys.o $(OBJECTS) $(STATICLIBS) - gcc -shared -g -o $@ isys.o $(OBJECTS) $(STATICLIBS) $(LOADLIBES) +_isys.so: isys.o $(OBJECTS) + gcc -shared -g -o $@ isys.o $(OBJECTS) $(LOADLIBES) _silo.so: silo.c gcc -shared $(CFLAGS) -fpic -o $@ silo.c ../balkan/libbalkan.a |