Skip to content

Commit 6e68e96

Browse files
qyot27nijel
authored andcommitted
Makefile.am: add missing suffix for make_hash
Same change as aab62b3, but on the proper file this time.
1 parent 0d567c7 commit 6e68e96

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tools/Makefile.am

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
noinst_PROGRAMS = make_hash
1+
noinst_PROGRAMS = make_hash$(EXEEXT)
22
noinst_HEADERS = encodings.h
33
noinst_SCRIPTS = expand_table.pl
44

@@ -30,8 +30,8 @@ all: encodings.h
3030
encodings.sed: $(top_builddir)/iconvenc.h
3131
sed -e 's/^#define \([A-Z0-9_]*\) \(.*\)/@\1@ \2/' -e 's/"//g' -e 's/NULL$$//' -e 's/ /\//' -e 's/^\(.*\)$$/s\/\1\//' $(top_builddir)/iconvenc.h >encodings.sed
3232

33-
encodings.h: encodings.sed $(srcdir)/encodings.dat make_hash
34-
sed -f encodings.sed $(srcdir)/encodings.dat | ./make_hash >encodings.h
33+
encodings.h: encodings.sed $(srcdir)/encodings.dat make_hash$(EXEEXT)
34+
sed -f encodings.sed $(srcdir)/encodings.dat | ./make_hash$(EXEEXT) >encodings.h
3535

3636
# Normally there's no need to regenerate tables, they are copy-and-pasted
3737
# into the C source manually, but the rules are here. Run `make tables'

0 commit comments

Comments
 (0)