Skip to content

Commit 249186c

Browse files
committed
9943 gfx-drm should use own bldenv copy
Reviewed by: Adam Števko <[email protected]> Reviewed by: Andy Fiddaman <[email protected]>
1 parent 7752022 commit 249186c

File tree

5 files changed

+394
-15
lines changed

5 files changed

+394
-15
lines changed

Makefile

+6-6
Original file line numberDiff line numberDiff line change
@@ -24,23 +24,23 @@ ONBLD_TOOLS=/opt/onbld
2424
# Do both debug and non-debug build in uts, in that order, so
2525
# (a) we know the debug code builds, and (b) install non-debug.
2626
install: FRC
27-
$(ONBLD_TOOLS)/bin/bldenv myenv.sh \
27+
/usr/bin/ksh93 tools/bldenv myenv.sh \
2828
"cd usr/src ; $(MAKE) setup"
29-
$(ONBLD_TOOLS)/bin/bldenv -d myenv.sh \
29+
/usr/bin/ksh93 tools/bldenv -d myenv.sh \
3030
"cd usr/src/uts ; $(MAKE) install"
31-
$(ONBLD_TOOLS)/bin/bldenv myenv.sh \
31+
/usr/bin/ksh93 tools/bldenv myenv.sh \
3232
"cd usr/src ; $(MAKE) install"
3333

3434
debug: FRC
35-
$(ONBLD_TOOLS)/bin/bldenv -d myenv.sh \
35+
/usr/bin/ksh93 tools/bldenv -d myenv.sh \
3636
"cd usr/src ; $(MAKE) install"
3737

3838
clean: FRC
39-
$(ONBLD_TOOLS)/bin/bldenv myenv.sh \
39+
/usr/bin/ksh93 tools/bldenv myenv.sh \
4040
"cd usr/src ; $(MAKE) clobber"
4141

4242
package: FRC
43-
$(ONBLD_TOOLS)/bin/bldenv myenv.sh \
43+
/usr/bin/ksh93 tools/bldenv myenv.sh \
4444
"cd usr/src/pkg ; $(MAKE) install"
4545

4646
FRC:

README

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ to check that your patches are in sync with edits.
8080
When doing incremental work in the gate, i.e. fixing
8181
compilation errors, it's handy to run an editor in a
8282
"bldenv" environment, as follows:
83-
bldenv -d myenv.sh
83+
ksh93 tools/bldenv -d myenv.sh
8484

8585
That gets you a new shell, in which you can run an
8686
emacs if you like "meta-x compile", or whatever.

0 commit comments

Comments
 (0)