diff options
author | mat <mat@FreeBSD.org> | 2016-07-20 23:33:20 +0800 |
---|---|---|
committer | mat <mat@FreeBSD.org> | 2016-07-20 23:33:20 +0800 |
commit | db56f13ef4400c01c2a9ef2ba0e545effb4949f9 (patch) | |
tree | d74ba65fed8db0fd098d71428aebd9af6e665d09 /editors/manedit | |
parent | 3152a538183a1b60ad1cc78f4daf75bf3776cbfb (diff) | |
download | freebsd-ports-gnome-db56f13ef4400c01c2a9ef2ba0e545effb4949f9.tar.gz freebsd-ports-gnome-db56f13ef4400c01c2a9ef2ba0e545effb4949f9.tar.zst freebsd-ports-gnome-db56f13ef4400c01c2a9ef2ba0e545effb4949f9.zip |
Cleanup $() variables in ports Makefiles.
Mostly replace with ${}, but sometime, replace with $$() because it is
what was intended in the first place. (I think.)
Sponsored by: Absolight
Diffstat (limited to 'editors/manedit')
-rw-r--r-- | editors/manedit/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/manedit/Makefile b/editors/manedit/Makefile index c7843a3ec0e6..c6c067d95860 100644 --- a/editors/manedit/Makefile +++ b/editors/manedit/Makefile @@ -16,7 +16,7 @@ MAKEFILE= Makefile.FreeBSD USES= alias tar:bzip2 USE_GNOME= gtk12 -MAKE_ARGS= STAGEDIR="$(STAGEDIR)" +MAKE_ARGS= STAGEDIR="${STAGEDIR}" pre-configure: @${CP} ${FILESDIR}/mntent* ${WRKSRC} |