diff options
author | rakuco <rakuco@FreeBSD.org> | 2016-12-25 23:01:33 +0800 |
---|---|---|
committer | rakuco <rakuco@FreeBSD.org> | 2016-12-25 23:01:33 +0800 |
commit | a5f729ad1d3bea68e595325ad005db6cf4269c0e (patch) | |
tree | 4bfe78e1289b52103a08c7bd56eae9691ff0311e | |
parent | d18e7d340732406477f5004166913b26a3e5ae0a (diff) | |
download | freebsd-ports-gnome-a5f729ad1d3bea68e595325ad005db6cf4269c0e.tar.gz freebsd-ports-gnome-a5f729ad1d3bea68e595325ad005db6cf4269c0e.tar.zst freebsd-ports-gnome-a5f729ad1d3bea68e595325ad005db6cf4269c0e.zip |
Make sure "all" is part of ALL_TARGET.
Follow-up to r429384: we were setting ALL_TARGET to just "doc". While the build
did not break, the code was actually being built during `make stage', which is
not what we expect.
-rw-r--r-- | databases/sqlite2/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/databases/sqlite2/Makefile b/databases/sqlite2/Makefile index ad8e05986142..6048f9a4ca0f 100644 --- a/databases/sqlite2/Makefile +++ b/databases/sqlite2/Makefile @@ -48,7 +48,7 @@ PLIST_SUB+= WITH_TCLWRAPPER="@comment " .endif .if ${PORT_OPTIONS:MDOCS} -ALL_TARGET= doc +ALL_TARGET= all doc PORTDOCS= * MAKE_ARGS+= TCLSH=${TCLSH} MAKE_ENV+= TCL_VER=${TCL_VER} |