Skip to content

Commit ecfb72b

Browse files
committed
t: simplify Makefile
There's no way these variables were assigned before. Signed-off-by: Felipe Contreras <[email protected]>
1 parent 62e8bf8 commit ecfb72b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

t/Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717
# You should have received a copy of the GNU General Public License
1818
# along with this program. If not, see http://www.gnu.org/licenses/ .
1919

20-
SHELL_PATH ?= $(SHELL)
21-
RM ?= rm -f
22-
PROVE ?= prove
23-
AGGREGATE_SCRIPT ?= aggregate-results.sh
20+
SHELL_PATH = $(SHELL)
21+
RM = rm -f
22+
PROVE = prove
23+
AGGREGATE_SCRIPT = aggregate-results.sh
2424

2525
T = $(sort $(wildcard *.t))
2626

0 commit comments

Comments
 (0)