From 85ca280fa27da1761c5ff317a34d235af118438e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mathieu=20B=C3=A9rard?= Date: Thu, 10 Aug 2006 02:43:16 +0000 Subject: [PATCH] Cleanup in Makefile Hardcode location of depmod and modprobe so sudo works even if /sbin in not in user's $PATH --- Makefile | 13 ++++++------- doc/ChangeLog | 2 +- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/Makefile b/Makefile index 204421c..7ac0208 100644 --- a/Makefile +++ b/Makefile @@ -29,13 +29,13 @@ KSRC = $(VMODDIR)/build KMODDIR = $(KSRC)/drivers/misc/omnibook KINCDIR = $(KSRC)/include/linux KDOCDIR = $(KSRC)/Documentation/omnibook -BDIR = $(shell pwd) +PWD = $(shell pwd) TODAY = $(shell date +%Y%m%d) KERNEL = $(shell echo $(KVER) | cut -d . -f 1-2) -DEPMOD = depmod -a -RMMOD = modprobe -r -INSMOD = modprobe +DEPMOD = /sbin/depmod -a +RMMOD = /sbin/modprobe -r +INSMOD = /sbin/modprobe INSTALL = install -m 644 MKDIR = mkdir -p RM = rm -f @@ -70,7 +70,7 @@ clean: install: all # Removing module from old location $(RM) $(VMODDIR)/kernel/drivers/char/$(MODULE_NAME).ko - make -C $(KSRC) M=$(PWD) modules_install + make -C $(KSRC) M=$(PWD) modules_install unload: $(RMMOD) $(MODULE_NAME) || : @@ -87,7 +87,6 @@ uninstall-all: unload $(DEPMOD) $(MODULE_NAME).ko: - PWD=$(shell pwd) $(MAKE) -C $(KSRC) SUBDIRS=$(PWD) modules kinstall: @@ -101,7 +100,7 @@ kinstall: $(INSTALL) doc/README doc/README-OneTouch $(KDOCDIR) kpatch: kinstall - (cd $(KSRC); patch -p1 < $(BDIR)/misc/omnibook-integration.patch) + (cd $(KSRC); patch -p1 < $(PWD)/misc/omnibook-integration.patch) version: sed -i "s|^\(#define OMNIBOOK_MODULE_VERSION.*\)\".*\"|\1\"2.$(TODAY)\"|" omnibook.h diff --git a/doc/ChangeLog b/doc/ChangeLog index 800bbaf..9de3b75 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -7,7 +7,7 @@ Changelog file for omnibook package: * Add dmi info for Toshiba Satellite A105 (Thanks Mikkel L. Ellertson) the support is pretty minimalistic (LCD brigtness only) this also inaugurate ectype 14 -* Cleanup in Makefile +* Cleanup/Fix in Makefile 2.20060809 Mathieu Bérard * Add dmi info for Toshiba Satellite M40X (Thanks Julien Valroff) -- 2.43.5