Skip to content

Commit

Permalink
Merge pull request #322 from ucb-bar/fix-grep-filter
Browse files Browse the repository at this point in the history
make sure grep filter only omits .h files
  • Loading branch information
abejgonzalez authored Nov 2, 2019
2 parents b73e43a + bd63971 commit 36ec517
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common.mk
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ harness_macro_temp: $(HARNESS_SMEMS_CONF)
# remove duplicate files and headers in list of simulation file inputs
########################################################################################
$(sim_common_files): $(sim_files) $(sim_top_blackboxes) $(sim_harness_blackboxes)
awk '{print $1;}' $^ | sort -u | grep -v '.*\.h' > $@
awk '{print $1;}' $^ | sort -u | grep -v '.*\.h$$' > $@

#########################################################################################
# helper rule to just make verilog files
Expand Down

0 comments on commit 36ec517

Please sign in to comment.