Skip to content

Commit

Permalink
makefile: set 'HGNAME' env variable when running 'make oss'
Browse files Browse the repository at this point in the history
Summary:
before

```
$ make oss
...
rm -f sl
cp build/scripts-3*/sl sl
cp: build/scripts-3*/sl: No such file or directory
make: *** [local] Error 1
```
after

```
...
rm -f sl
cp build/scripts-3*/sl sl
```

Reviewed By: muirdm

Differential Revision: D49871832

fbshipit-source-id: ecbd083f5187b6fb0f0c4e640d732f336ef2cb30
  • Loading branch information
zzl0 authored and facebook-github-bot committed Oct 4, 2023
1 parent d78dea6 commit dde8296
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eden/scm/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ install-oss: oss
--install-scripts="$(PREFIX)/bin" --force

local:
SAPLING_OSS_BUILD=$(OSS) \
SAPLING_OSS_BUILD=$(OSS) HGNAME=$(HGNAME) \
$(shell $(PYTHON3) contrib/pick_python.py $(PYTHON3)) setup.py $(PURE) \
build_interactive_smartlog \
build_py -c -d . \
Expand Down

0 comments on commit dde8296

Please sign in to comment.