summaryrefslogtreecommitdiff
path: root/default.c
diff options
context:
space:
mode:
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 3465c53..c8502a9 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++",