Changeset 5295
- Timestamp:
- 06/30/08 09:21:55 (2 months ago)
- Files:
-
- i2c/trunk/CHANGES (modified) (1 diff)
- i2c/trunk/Makefile (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
i2c/trunk/CHANGES
r4994 r5295 9 9 10 10 SVN-HEAD 11 11 Makefile: Fallback to simple depmod if System.map can't be found 12 12 13 13 2.10.5 (20071024) i2c/trunk/Makefile
r4101 r5295 207 207 install :: all 208 208 ifeq ($(DESTDIR),) 209 -if [ -r $(MODPREF)/build/System.map -a -x /sbin/depmod ] ; then \ 210 /sbin/depmod -a -F $(MODPREF)/build/System.map $(KERNELVERSION) ; \ 209 -if [ -x /sbin/depmod ] ; then \ 210 if [ -r $(MODPREF)/build/System.map ] ; then \ 211 /sbin/depmod -a -F $(MODPREF)/build/System.map $(KERNELVERSION) ; \ 212 elif [ "$(KERNELVERSION)" = "`uname -r`" ] ; then \ 213 /sbin/depmod -a ; \ 214 fi \ 211 215 fi 212 216 else
