diff options
author | Roland McGrath <roland@redhat.com> | 1993-03-08 19:50:11 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 1993-03-08 19:50:11 +0000 |
commit | 69105addb444ca92858d0fd92671f20f53724eb3 (patch) | |
tree | 75e766d50da5215b5af2f940d1797d7b3d570a21 | |
parent | e4c66e2f888c079e2be5848cbd4d4e177189e8e3 (diff) | |
download | gunmake-69105addb444ca92858d0fd92671f20f53724eb3.tar.gz |
Formerly compatMakefile.~66~
-rw-r--r-- | compatMakefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/compatMakefile b/compatMakefile index 67ed8a5..43c25d5 100644 --- a/compatMakefile +++ b/compatMakefile @@ -19,8 +19,9 @@ # Makefile for GNU Make # -srcdir = @srcdir@ -VPATH = $(srcdir) +# Ultrix 2.2 make doesn't expand the value of VPATH. +VPATH = @srcdir@ +srcdir = $(VPATH) CC = @CC@ |