Skip to content

Commit

Permalink
build: remove pushd for portability
Browse files Browse the repository at this point in the history
  • Loading branch information
VincentVanlaer committed Jan 23, 2025
1 parent 0f89094 commit e7aaa47
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion forum/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,5 @@ $(BUILD_DIR_MODULE)/modules/forum_m.mod: $(BUILD_DIR_FORUM_BUILD)/build-complete
cp $(BUILD_DIR_FORUM_BUILD)/build/$(notdir $@) $@

check:
pushd test > /dev/null ; ../$(BUILD_DIR_FORUM_BUILD)/build/test_order > ../$(CHECK_RESULTS); popd > /dev/null
cd test; ../$(BUILD_DIR_FORUM_BUILD)/build/test_order > ../$(CHECK_RESULTS)
diff -b $(CHECK_RESULTS) $(CHECK_RESULTS_GOLDEN)
2 changes: 1 addition & 1 deletion kap/preprocessor/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ build-data: $(BUILD_DIR_MODULE)/kap_input_data/ logT_points $(OBJ_OUT) | $(BUILD
cp condtable.data $(BUILD_DIR_MODULE)/data/kap_data/

$(BUILD_DIR_MODULE)/AESOPUS_AGSS09.h5: $(BUILD_DIR_MODULE)/ags09/
pushd $(BUILD_DIR_MODULE) > /dev/null; python $(CURDIR)/AESOPUS/aesopus.py $(CURDIR)/AESOPUS/AGSS09.yaml ; popd > /dev/null
cd $(BUILD_DIR_MODULE); python $(CURDIR)/AESOPUS/aesopus.py $(CURDIR)/AESOPUS/AGSS09.yaml

build-aesopus: $(BUILD_DIR_MODULE)/AESOPUS_AGSS09.h5

Expand Down

0 comments on commit e7aaa47

Please sign in to comment.