mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
1.4 KiB

  1. --- ./Makefile.orig 2007-03-07 09:39:40.000000000 +0100
  2. +++ ./Makefile 2007-12-01 08:29:11.000000000 +0100
  3. @@ -86,16 +86,9 @@
  4. install: install-modules install-tools
  5. install-modules:
  6. - @# check if there are modules left from an old installation
  7. - @# might cause make to abort the build
  8. - sh scripts/find-madwifi-modules.sh $(KERNELRELEASE) $(DESTDIR)
  9. -
  10. for i in $(DIRS_MODULES); do \
  11. $(MAKE) -C $$i install || exit 1; \
  12. done
  13. -ifeq ($(DESTDIR),)
  14. - (export KMODPATH=$(KMODPATH); /sbin/depmod -ae $(KERNELRELEASE))
  15. -endif
  16. install-tools:
  17. $(MAKE) -C $(TOOLS) install || exit 1
  18. --- ./Makefile.inc.orig 2007-01-18 09:26:23.000000000 +0100
  19. +++ ./Makefile.inc 2007-12-01 08:23:38.000000000 +0100
  20. @@ -60,7 +60,7 @@
  21. # running kernel was compiled. Note that the configuration and the
  22. # version of the kernel tree might have changed since then.
  23. ifeq ($(wildcard $(KERNELPATH)),)
  24. -KERNELPATH = /lib/modules/$(shell uname -r)/build
  25. +KERNELPATH = /usr/src/linux
  26. # sanity check: does KERNELPATH exist?
  27. ifeq ($(shell cd $(KERNELPATH) && pwd),)
  28. $(error $(KERNELPATH) is missing, please set KERNELPATH)
  29. --- ./tools/Makefile.orig 2007-02-07 04:18:49.000000000 +0100
  30. +++ ./tools/Makefile 2007-12-01 08:23:38.000000000 +0100
  31. @@ -34,8 +34,8 @@
  32. STRIP ?= $(USER_CROSS_COMPILE)strip
  33. CC = $(USER_CROSS_COMPILE)gcc
  34. -BINDIR ?= /usr/local/bin
  35. -MANDIR ?= /usr/local/man
  36. +BINDIR ?= /usr/bin
  37. +MANDIR ?= /usr/man
  38. #
  39. # Path to the HAL source code.