lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Date:	Tue, 14 Jun 2011 09:18:09 +0800
From:	"Alex,Shi" <alex.shi@...el.com>
To:	linux-kernel@...r.kernel.org
Cc:	torvalds@...l.org
Subject: 3.0-rc3 patch compile issue

The rc3
patch(http://www.kernel.org/pub/linux/kernel/v3.0/testing/patch-3.0-rc3.bz2) can not be compiled since srcipts/depmod.sh is not executable but Makefile want to it be. 

$ ll scripts/depmod.sh 
-rw-rw-r-- 1 alexs alexs 1231 2011-06-14 16:11 scripts/depmod.sh

But the file attribute is correct in Linus' git tree. So, the guys need
to update above patch file or change something in Makefile. 

Signed-off-by: Alex Shi <alex.shi@...el.com>
---
diff --git a/Makefile b/Makefile
index badb923..2a26917 100644
--- a/Makefile
+++ b/Makefile
@@ -1526,7 +1526,7 @@ quiet_cmd_rmfiles = $(if $(wildcard $(rm-files)),CLEAN   $(wildcard $(rm-files))
 
 # Run depmod only if we have System.map and depmod is executable
 quiet_cmd_depmod = DEPMOD  $(KERNELRELEASE)
-      cmd_depmod = $(srctree)/scripts/depmod.sh $(DEPMOD) $(KERNELRELEASE)
+      cmd_depmod = $(shell $(CONFIG_SHELL) $(srctree)/scripts/depmod.sh $(DEPMOD) $(KERNELRELEASE))
 
 # Create temporary dir for module support files
 # clean it up only when building all modules


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ