about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--common.mk3
1 files changed, 0 insertions, 3 deletions
diff --git a/common.mk b/common.mk
index 5ac872fd..b445ea19 100644
--- a/common.mk
+++ b/common.mk
@@ -109,9 +109,6 @@ LDLIBS = $(LOADLIBES) $(LIBS)
 # disastrous if PKGDIR is a relative directory, and I don't know any
 # way to detect that case and fail, so I just add a '/' to the front
 # if it isn't already there.
-#
-# TODO: Convert 'pkgdir' to absolute path with # the $(abspath ...)
-# built-in function, available from GNU Make v 3.81 onward. 
 ifneq ($(pkgdir)x,x)
   PKGDIR = $(patsubst //%,/%, /$(pkgdir))
 else