Don't set the VPATH. Breaks the linux build

On linux this causes make to see the 'servo' rule as targeting the src/servo
directory, which is always up to date. servo never gets built
This commit is contained in:
Brian Anderson 2012-10-08 16:22:31 -07:00
parent 7a84466a6d
commit 134632bb45

View file

@ -17,7 +17,7 @@ endif
S := $(CFG_SRC_DIR)
B := $(CFG_BUILD_DIR)
VPATH := $(S)src
#VPATH := $(S)src
# Delete the built-in rules.
.SUFFIXES:
@ -153,7 +153,7 @@ ifeq ($(OSTYPE),darwin)
package: servo
mkdir -p Servo.app/Contents/MacOS/src/rust-cocoa
mkdir -p Servo.app/Contents/MacOS/src/rust-azure
cp $(VPATH)/Info.plist Servo.app/Contents/
cp $(S)/Info.plist Servo.app/Contents/
cp servo Servo.app/Contents/MacOS/
cp src/rust-cocoa/lib*.dylib Servo.app/Contents/MacOS/src/rust-cocoa/
cp src/rust-azure/lib*.dylib Servo.app/Contents/MacOS/src/rust-azure/