From cd60f074cb09c680804c30b2c16cd43b8b5ea16c Mon Sep 17 00:00:00 2001 From: Christian Wiese Date: Sun, 23 Dec 2012 14:55:31 +0100 Subject: [PATCH] shadow: fixed disable_groups() to mangle Makefile.in instead of pre-genrated Makefiles --- base/shadow/shadow.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/base/shadow/shadow.conf b/base/shadow/shadow.conf index 71dcc3bc1..8cc4c3794 100644 --- a/base/shadow/shadow.conf +++ b/base/shadow/shadow.conf @@ -25,8 +25,8 @@ fi disable_groups() { echo_status "Disabling groups command..." echo_status "Using groups command provided by coreutils..." - sed 's/groups$(EXEEXT) //' -i.orig src/Makefile - find man -name Makefile -exec sed 's/groups\.1 //' -i.orig '{}' \; + sed 's/groups$(EXEEXT) //' -i.orig src/Makefile.in + find man -name Makefile.in -exec sed 's/groups\.1 / /' -i.orig '{}' \; } hook_add premake 3 "disable_groups"