diff options
author | mi <mi@FreeBSD.org> | 2001-03-12 07:00:04 +0800 |
---|---|---|
committer | mi <mi@FreeBSD.org> | 2001-03-12 07:00:04 +0800 |
commit | 14fbd99155c5fb5ccbcb266c7c60e8e4c80a7bb6 (patch) | |
tree | 3a4efcd1c566f444873b61997d411d89788ebe93 /editors/fb | |
parent | 78ad422da2a19a17def97fddb32ce99cd47175ee (diff) | |
download | freebsd-ports-gnome-14fbd99155c5fb5ccbcb266c7c60e8e4c80a7bb6.tar.gz freebsd-ports-gnome-14fbd99155c5fb5ccbcb266c7c60e8e4c80a7bb6.tar.zst freebsd-ports-gnome-14fbd99155c5fb5ccbcb266c7c60e8e4c80a7bb6.zip |
Just use ${PREFIX} instead of ``UL''. Now that strtoull is part of libc
(and declared in stdlib.h), don't -Dstrtoull=strtoul.
Diffstat (limited to 'editors/fb')
-rw-r--r-- | editors/fb/files/Makefile.in | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/editors/fb/files/Makefile.in b/editors/fb/files/Makefile.in index 31f0226ffc9b..69e45c0f54af 100644 --- a/editors/fb/files/Makefile.in +++ b/editors/fb/files/Makefile.in @@ -1,8 +1,6 @@ PROG=fb -CFLAGS+=-Dstrtoull=strtoul - -BINDIR=UL/bin -MANDIR=UL/man/man +BINDIR=${PREFIX}/bin +MANDIR=${PREFIX}/man/man .include <bsd.prog.mk> |