File tree 6 files changed +16
-3
lines changed 6 files changed +16
-3
lines changed Original file line number Diff line number Diff line change
1
+ 2019-10-31 Albert Chu <chu11@llnl.gov>
2
+
3
+ * src/libgenders/Makefile.am: Add make target for
4
+ query_parse.tab.c.
5
+
1
6
2019-10-30 Albert Chu <chu11@llnl.gov>
2
7
3
8
* src/libgenders/genders_parsing.c: Fix corner case in which lines
Original file line number Diff line number Diff line change 6
6
Meta: 1
7
7
Name: genders
8
8
Version: 1.27
9
- Release: 1
9
+ Release: 2
Original file line number Diff line number Diff line change 3281
3281
# release, then set age to 0.
3282
3282
#
3283
3283
LIBGENDERS_CURRENT=3
3284
- LIBGENDERS_REVISION=2
3284
+ LIBGENDERS_REVISION=3
3285
3285
LIBGENDERS_AGE=3
3286
3286
LIBGENDERS_VERSION_INFO=$LIBGENDERS_CURRENT:$LIBGENDERS_REVISION:$LIBGENDERS_AGE
3287
3287
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ AM_MAINTAINER_MODE
37
37
# release, then set age to 0.
38
38
#
39
39
LIBGENDERS_CURRENT=3
40
- LIBGENDERS_REVISION=2
40
+ LIBGENDERS_REVISION=3
41
41
LIBGENDERS_AGE=3
42
42
LIBGENDERS_VERSION_INFO=$LIBGENDERS_CURRENT:$LIBGENDERS_REVISION:$LIBGENDERS_AGE
43
43
AC_SUBST ( [ LIBGENDERS_VERSION_INFO] )
Original file line number Diff line number Diff line change @@ -37,6 +37,10 @@ genders_query_parse.c: genders_query.c $(srcdir)/genders_query_parse.l
37
37
genders_query.c : $(srcdir ) /genders_query.y
38
38
$(YACC ) -d -b genders_query $(srcdir ) /genders_query.y
39
39
40
+ # achu: -o option in yacc/bison is not portable, use -b instead
41
+ genders_query.tab.c : $(srcdir ) /genders_query.y
42
+ $(YACC ) -d -b genders_query $(srcdir ) /genders_query.y
43
+
40
44
CLEANFILES = genders_query_parse.c genders_query.tab.c genders_query.tab.h
41
45
42
46
EXTRA_DIST = genders.map genders_query_parse.l genders_query.y
Original file line number Diff line number Diff line change @@ -772,6 +772,10 @@ genders_query_parse.c: genders_query.c $(srcdir)/genders_query_parse.l
772
772
genders_query.c : $(srcdir ) /genders_query.y
773
773
$(YACC ) -d -b genders_query $(srcdir ) /genders_query.y
774
774
775
+ # achu: -o option in yacc/bison is not portable, use -b instead
776
+ genders_query.tab.c : $(srcdir ) /genders_query.y
777
+ $(YACC ) -d -b genders_query $(srcdir ) /genders_query.y
778
+
775
779
../libcommon/libcommon.la : force-dependency-check
776
780
@cd ` dirname $@ ` && make ` basename $@ `
777
781
You can’t perform that action at this time.
0 commit comments