diff options
author | crunchy <crunchy> | 2002-09-16 13:57:52 +0000 |
---|---|---|
committer | crunchy <crunchy> | 2002-09-16 13:57:52 +0000 |
commit | 4b5697d9e49aa865058acf71b9a464ff939e8b1e (patch) | |
tree | 3f3a4cbcc1a386d87df68080d7f884065177d205 | |
parent | e60f78c51d4f6a3f4cc16762d2cd4081781555a1 (diff) | |
download | mpiosh-4b5697d9e49aa865058acf71b9a464ff939e8b1e.tar.gz mpiosh-4b5697d9e49aa865058acf71b9a464ff939e8b1e.tar.bz2 mpiosh-4b5697d9e49aa865058acf71b9a464ff939e8b1e.zip |
fixed bug in rpm
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | kernel/Makefile.am | 4 |
2 files changed, 9 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2002-09-16 Andreas Buesching <crunchy@tzi.de> + + * kernel/Makefile.am (install-strip): defined to avoid stripping + of the kernel module + 2002-09-16 Yuji Touya <salmoon@users.sourceforge.net> * kernel/mpio.c: changed include file to resolve symbols diff --git a/kernel/Makefile.am b/kernel/Makefile.am index f308f60..5772839 100644 --- a/kernel/Makefile.am +++ b/kernel/Makefile.am @@ -9,6 +9,10 @@ all: mpio.o mpio.o: mpio.c $(CC) -c $(KCFLAGS) $(INCLUDES) $< +install-strip: + $(mkinstalldirs) $(DESTDIR)@MODULE_PATH@ + $(INSTALL_PROGRAM) -m 644 mpio.o $(DESTDIR)@MODULE_PATH@ + install: $(mkinstalldirs) $(DESTDIR)@MODULE_PATH@ $(INSTALL_PROGRAM) -m 644 mpio.o $(DESTDIR)@MODULE_PATH@ |