diff options
author | David Cantrell <dcantrell@redhat.com> | 2006-06-27 15:54:17 +0000 |
---|---|---|
committer | David Cantrell <dcantrell@redhat.com> | 2006-06-27 15:54:17 +0000 |
commit | 98ac162e07712108b59f7432466af6d9b18cc70a (patch) | |
tree | 558d786bef5d1277c2eba39b676d10a9e75a93f3 /isys/Makefile | |
parent | 375d544fbcc7ff98ed4d44c30ddb79abf9858c5a (diff) | |
download | anaconda-98ac162e07712108b59f7432466af6d9b18cc70a.tar.gz anaconda-98ac162e07712108b59f7432466af6d9b18cc70a.tar.xz anaconda-98ac162e07712108b59f7432466af6d9b18cc70a.zip |
Hooray for 4th grade C programming class!
I had an idea that we could make loader smaller if we didn't call toupper() or string functions. Well, we use string functions all over the place, but I did remove the toupper() calls I used. Yeah, not exciting. Believe it or not, this was involved in a large tracking-down of double free()'s yesterday.
Diffstat (limited to 'isys/Makefile')
-rw-r--r-- | isys/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/isys/Makefile b/isys/Makefile index 04b833c72..ed3be03af 100644 --- a/isys/Makefile +++ b/isys/Makefile @@ -5,7 +5,7 @@ CFLAGS += -I$(PYTHONINCLUDE) -I.. -DHAVE_NFS OBJECTS = nfsmount.o nfsmount_clnt.o nfsmount_xdr.o imount.o \ smp.o devnodes.o cpio.o uncpio.o dasd.o \ lang.o isofs.o dns.o linkdetect.o vio.o \ - ethtool.o wireless.o eddsupport.o nl.o + ethtool.o wireless.o eddsupport.o nl.o str.o SOBJECTS = $(patsubst %.o,%.lo,$(OBJECTS)) SOURCES = $(patsubst %.o,%.c,$(OBJECTS)) isys.c LOADLIBES = -lresolv -lpci -lpopt -lext2fs -lz -lkudzu -lpci -ldevmapper |