From a72a10ff15040ce10737c10274e0d7c0c6f831b1 Mon Sep 17 00:00:00 2001 From: Ezra Peisach Date: Thu, 4 Jan 1990 23:05:49 +0000 Subject: [PATCH] Cleaned up rules for stripping scripts. Also noticed problem in that InstPgmFlags are not used unless stripping on installation. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@71 dc483132-0cff-0310-8789-dd5450dbe970 --- src/config/Imake.tmpl | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/config/Imake.tmpl b/src/config/Imake.tmpl index 63a6ecdcb..3880b57c2 100644 --- a/src/config/Imake.tmpl +++ b/src/config/Imake.tmpl @@ -367,7 +367,10 @@ #define PexCDebugFlags -g #endif #ifndef InstPgmFlags -#define InstPgmFlags -s +#define InstPgmFlags +#endif +#ifndef InstScrFlags +#define InstScrFlags #endif #ifndef InstBinFlags #define InstBinFlags -m 0755 @@ -605,10 +608,11 @@ #undef _wideprotodef #if StripInstalledPrograms - INSTPGMFLAGS = InstPgmFlags /* install flags for stripping */ + INSTPGMFLAGS = InstPgmFlags -s /* install flags for stripping */ #else - INSTPGMFLAGS = + INSTPGMFLAGS = InstPgmFlags /* install flags without stripping */ #endif + INSTSCRFLAGS = InstScrFlags /* install flags without stripping */ INSTBINFLAGS = InstBinFlags /* install flags for programs */ INSTUIDFLAGS = InstUidFlags /* install flags for setuid programs */ INSTLIBFLAGS = InstLibFlags /* install flags for libraries */ -- 2.26.2