diff options
author | ponce <matteo.bernardini@gmail.com> | 2021-04-05 08:44:00 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2021-06-08 08:21:24 +0200 |
commit | 605a266911b50ababbb3f8a8b224efb42743379c (patch) | |
tree | a2030b03392d6978f844e0fdd206a2a8aaba5e09 | |
parent | b73374805d06a1afbd49efb5cbf7a3be46217357 (diff) | |
download | nx-libs-605a266911b50ababbb3f8a8b224efb42743379c.tar.gz nx-libs-605a266911b50ababbb3f8a8b224efb42743379c.tar.bz2 nx-libs-605a266911b50ababbb3f8a8b224efb42743379c.zip |
fix building with binutils >= 2.36.
The l option of ar in the newer binutils versions switched
from being unused to being used to specify dependencies
so here should be safely removed
-rw-r--r-- | nx-X11/config/cf/Imake.tmpl | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/nx-X11/config/cf/Imake.tmpl b/nx-X11/config/cf/Imake.tmpl index 25d985d75..de1fca937 100644 --- a/nx-X11/config/cf/Imake.tmpl +++ b/nx-X11/config/cf/Imake.tmpl @@ -1015,25 +1015,13 @@ TCLIBDIR = TclLibDir #define ArCmdBase ar #endif #ifndef ArCmd -#if HasLargeTmp || SystemV4 #define ArCmd ArCmdBase cq -#else -#define ArCmd ArCmdBase clq -#endif #endif #ifndef ArAddCmd -#if HasLargeTmp || SystemV4 #define ArAddCmd ArCmdBase ru -#else -#define ArAddCmd ArCmdBase rul -#endif #endif #ifndef ArExtCmd -#if HasLargeTmp || SystemV4 #define ArExtCmd ArCmdBase x -#else -#define ArExtCmd ArCmdBase xl -#endif #endif #ifndef BootstrapCFlags #define BootstrapCFlags /**/ |