diff options
author | nima <nima@abc39116-655e-4be6-ad55-d661dc543056> | 2008-10-16 15:52:48 +0000 |
---|---|---|
committer | nima <nima@abc39116-655e-4be6-ad55-d661dc543056> | 2008-10-16 15:52:48 +0000 |
commit | 259d4088f61379786d1889c2e5bc7df2687ea6c3 (patch) | |
tree | 8704132bc9b979c2648310d964df4adc1cf53c31 | |
parent | c3078cd8c661c23b3ecc0928169a9a7b4613b6ee (diff) | |
download | python-dmidecode-259d4088f61379786d1889c2e5bc7df2687ea6c3.tar.gz python-dmidecode-259d4088f61379786d1889c2e5bc7df2687ea6c3.tar.xz python-dmidecode-259d4088f61379786d1889c2e5bc7df2687ea6c3.zip |
Remove efence.
git-svn-id: svn://svn.autonomy.net.au/python-dmidecode@70 abc39116-655e-4be6-ad55-d661dc543056
-rw-r--r-- | Makefile | 3 | ||||
-rw-r--r-- | setup.py | 3 |
2 files changed, 4 insertions, 2 deletions
@@ -27,7 +27,8 @@ CFLAGS += -g SOFLAGS = -shared -fPIC # Pass linker flags here -LDFLAGS = -I/usr/include/$(PY) -lefence +#LDFLAGS = -I/usr/include/$(PY) -lefence +LDFLAGS = -I/usr/include/$(PY) DESTDIR = prefix = /usr/local @@ -12,7 +12,8 @@ setup( "dmidecode", sources = [ "dmidecodemodule.c", "util.c", "catsprintf.c", "dmioem.c", "dmiopt.c", "dmidecode.c" ], library_dirs = [ "/home/nima/dev-room/projects/dmidecode" ], - libraries = [ "util", "efence" ], + libraries = [ "util" ], + #libraries = [ "util", "efence" ], ) ] ) |