diff options
author | wiz <wiz@pkgsrc.org> | 2004-08-29 14:25:10 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2004-08-29 14:25:10 +0000 |
commit | 086f05075c6018ee64f353378afd97f6a326b091 (patch) | |
tree | 73ba40f230c581f04e24f02f8eee40a1a1fe2440 /mk | |
parent | 93bbea22bfa3d9300f57a5ef345c8208ab6bba68 (diff) | |
download | pkgsrc-086f05075c6018ee64f353378afd97f6a326b091.tar.gz |
Fix typo in comment, reported by Ryo HAYASAKA in PR 26797.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/buildlink3/marshall | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mk/buildlink3/marshall b/mk/buildlink3/marshall index d59e8ae1061..4d3d32762db 100644 --- a/mk/buildlink3/marshall +++ b/mk/buildlink3/marshall @@ -1,4 +1,4 @@ -# $NetBSD: marshall,v 1.11 2004/03/29 06:02:53 jlam Exp $ +# $NetBSD: marshall,v 1.12 2004/08/29 14:25:10 wiz Exp $ # # Handle cases where multiple consecutive arguments must be processed # together, either by merging the arguments or "skipping" the extra @@ -14,8 +14,8 @@ case $arg in shift ;; # -# Merge "-Wl,R -Wl,/path/to/dir" into a single argument -# "-Wl,R/path/to/dir" and merge "-Wl,--rpath -Wl,/path/to/dir" into +# Merge "-Wl,-R -Wl,/path/to/dir" into a single argument +# "-Wl,-R/path/to/dir" and merge "-Wl,--rpath -Wl,/path/to/dir" into # "-Wl,--rpath,/path/to/dir" so that we can look them up in the cache. # Also deal with "-Xlinker" being equivalent to "-Wl,". # |