diff options
author | Matt Wilson <msw@redhat.com> | 1999-09-18 16:32:45 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-09-18 16:32:45 +0000 |
commit | a301d473058b7aa41b6ed9962f5a0518ac7969a0 (patch) | |
tree | cb78c48dee4d65857c605adab940e7a641088235 /utils | |
parent | d9e5023add4511d489febc51ed53ff16473a86d4 (diff) | |
download | anaconda-a301d473058b7aa41b6ed9962f5a0518ac7969a0.tar.gz anaconda-a301d473058b7aa41b6ed9962f5a0518ac7969a0.tar.xz anaconda-a301d473058b7aa41b6ed9962f5a0518ac7969a0.zip |
use new isysReadModuleInfo() call
Diffstat (limited to 'utils')
-rw-r--r-- | utils/Makefile | 5 | ||||
-rw-r--r-- | utils/modlist.c | 2 |
2 files changed, 4 insertions, 3 deletions
diff --git a/utils/Makefile b/utils/Makefile index d48735e4a..5a6aece0f 100644 --- a/utils/Makefile +++ b/utils/Makefile @@ -6,10 +6,11 @@ all: modlist moddeps moddeps: moddeps.o $(CC) $(LDFLAGS) -o moddeps moddeps.o ../loader/modules.o \ - ../loader/log.o $(LOADLIBES) \ + $(LOADLIBES) \ ../isys/modutils/insmod/libmodutils.a \ ../isys/modutils/util/libutil.a \ ../isys/modutils/obj/libobj.a -lrpm -lbz2 -lz -clean: rm -f modlist +clean: + rm -f modlist diff --git a/utils/modlist.c b/utils/modlist.c index 754a75933..966852cb1 100644 --- a/utils/modlist.c +++ b/utils/modlist.c @@ -38,7 +38,7 @@ int main(int argc, char ** argv) { } mis = isysNewModuleInfoSet(); - if (isysReadModuleInfo(modInfoFile, mis)) { + if (isysReadModuleInfo(modInfoFile, mis, NULL)) { fprintf(stderr, "Failed to read %s\n", modInfoFile); exit(1); } |