Commit c46c7c75 authored by Simon Kelley's avatar Simon Kelley

tweak portable get-cwd trick code to work on GNU-make 3.82

parent 552af8b9
...@@ -46,10 +46,10 @@ MAN = man ...@@ -46,10 +46,10 @@ MAN = man
################################################################# #################################################################
# pmake way. # pmake way. (NB no spaces to keep gmake 3.82 happy)
top != pwd top!=pwd
# GNU make way. # GNU make way.
top ?= $(shell pwd) top?=$(CURDIR)
dbus_cflags = `echo $(COPTS) | $(top)/bld/pkg-wrapper HAVE_DBUS $(PKG_CONFIG) --cflags dbus-1` dbus_cflags = `echo $(COPTS) | $(top)/bld/pkg-wrapper HAVE_DBUS $(PKG_CONFIG) --cflags dbus-1`
dbus_libs = `echo $(COPTS) | $(top)/bld/pkg-wrapper HAVE_DBUS $(PKG_CONFIG) --libs dbus-1` dbus_libs = `echo $(COPTS) | $(top)/bld/pkg-wrapper HAVE_DBUS $(PKG_CONFIG) --libs dbus-1`
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment