Cleaned up rules for stripping scripts. Also noticed problem in that
authorEzra Peisach <epeisach@mit.edu>
Thu, 4 Jan 1990 23:05:49 +0000 (23:05 +0000)
committerEzra Peisach <epeisach@mit.edu>
Thu, 4 Jan 1990 23:05:49 +0000 (23:05 +0000)
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

index 63a6ecdcb76fa70d209328c71edd03f9644767e7..3880b57c24f1303e3fae53c7fce91acc80c659ac 100644 (file)
 #define PexCDebugFlags -g
 #endif
 #ifndef InstPgmFlags
-#define InstPgmFlags -s
+#define InstPgmFlags
+#endif
+#ifndef InstScrFlags
+#define InstScrFlags
 #endif
 #ifndef InstBinFlags
 #define InstBinFlags -m 0755
 #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 */