summaryrefslogtreecommitdiff
path: root/default.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@redhat.com>1994-02-16 21:32:01 +0000
committerRoland McGrath <roland@redhat.com>1994-02-16 21:32:01 +0000
commitd68bb0895be0a78b26de5a9e88e36196e21429fc (patch)
tree36bb5ee1b62af41c050b2c7eae00a2e7e6867f23 /default.c
parent29b051dc0c5d983037f5793b60874073f71cddbb (diff)
downloadmake-d68bb0895be0a78b26de5a9e88e36196e21429fc.tar.gz
entered into RCS
Diffstat (limited to 'default.c')
-rw-r--r--default.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/default.c b/default.c
index 3465c538..c8502a9b 100644
--- a/default.c
+++ b/default.c
@@ -195,7 +195,13 @@ static char *default_suffix_rules[] =
static char *default_variables[] =
{
"AR", "ar",
+#ifndef __hpux
"ARFLAGS", "rv",
+#else
+ /* HPUX ar's f flag says to truncate the file names to archive member
+ name length in comparisons, so replacement notices the equality. */
+ "ARFLAGS", "rfv",
+#endif
"AS", "as",
"CC", "cc",
"CXX", "g++",