diff options
Diffstat (limited to 'lang/f2c/files/f2c-f77.in')
-rw-r--r-- | lang/f2c/files/f2c-f77.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lang/f2c/files/f2c-f77.in b/lang/f2c/files/f2c-f77.in index dd9a8711429..da336b03f82 100644 --- a/lang/f2c/files/f2c-f77.in +++ b/lang/f2c/files/f2c-f77.in @@ -30,6 +30,8 @@ PATH=$PATH:/bin:/usr/bin:@PREFIX@/bin # # -isysroot Change root directory for headers and libraries # +# -framework Tells the linker to search for a framework +# # -c Do not call linker, leave relocatables in *.o. # # -C Check that subscripts are in bounds. @@ -304,6 +306,10 @@ do shift 2 ;; + -framework) CFLAGS="$CFLAGS $1 $(shell_quote "$2")" + shift 2 + ;; + -*) CFLAGS="$CFLAGS $(shell_quote "$1")" CPPFLAGS="$CPPFLAGS $(shell_quote "$1")" if test $VERBOSE = "yes"; then |