mirror of
https://github.com/servo/servo.git
synced 2025-08-06 22:15:33 +01:00
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:
parent
7a84466a6d
commit
134632bb45
1 changed files with 2 additions and 2 deletions
|
@ -17,7 +17,7 @@ endif
|
||||||
S := $(CFG_SRC_DIR)
|
S := $(CFG_SRC_DIR)
|
||||||
B := $(CFG_BUILD_DIR)
|
B := $(CFG_BUILD_DIR)
|
||||||
|
|
||||||
VPATH := $(S)src
|
#VPATH := $(S)src
|
||||||
|
|
||||||
# Delete the built-in rules.
|
# Delete the built-in rules.
|
||||||
.SUFFIXES:
|
.SUFFIXES:
|
||||||
|
@ -153,7 +153,7 @@ ifeq ($(OSTYPE),darwin)
|
||||||
package: servo
|
package: servo
|
||||||
mkdir -p Servo.app/Contents/MacOS/src/rust-cocoa
|
mkdir -p Servo.app/Contents/MacOS/src/rust-cocoa
|
||||||
mkdir -p Servo.app/Contents/MacOS/src/rust-azure
|
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 servo Servo.app/Contents/MacOS/
|
||||||
cp src/rust-cocoa/lib*.dylib Servo.app/Contents/MacOS/src/rust-cocoa/
|
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/
|
cp src/rust-azure/lib*.dylib Servo.app/Contents/MacOS/src/rust-azure/
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue