traceroute: fix help text to not show -6 when traceroute6 is off
[oweals/busybox.git] / scripts / trylink
index 7ea1d5cad79227740cca5a2e3d264e908e6cbf88..8c8854679be80d0294ebb3e807c3a446a1fa8933 100755 (executable)
@@ -99,6 +99,11 @@ else
 fi
 )`
 
+# The --gc-sections option is not supported by older versions of ld
+if test -n "$GC_SECTIONS"; then
+    GC_SECTIONS=`check_cc "$GC_SECTIONS" ""`
+fi
+
 # Sanitize lib list (dups, extra spaces etc)
 LDLIBS=`echo "$LDLIBS" | xargs -n1 | sort | uniq | xargs`