diff options
Diffstat (limited to 'Makeconf')
-rw-r--r-- | Makeconf | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -40,7 +40,11 @@ endif ifndef srcdir # We are building in the source directory itself. srcdir = . -top_srcdir = $(..:%/=%) +ifeq (.,$(dir)) +top_srcdir = . +else +top_srcdir = .. +endif endif # Include the configure-generated file of parameters. |