From: Ezra Peisach Date: Thu, 4 Jan 1990 23:05:49 +0000 (+0000) Subject: Cleaned up rules for stripping scripts. Also noticed problem in that X-Git-Tag: krb5-1.0-alpha2~1302 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=a72a10ff15040ce10737c10274e0d7c0c6f831b1;p=krb5.git 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 --- 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 */