Skip to content

Commit

Permalink
Fix bug in buildsystem, unable to create man page
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-ac-martin committed Apr 30, 2015
1 parent a7c016e commit 3d41cb5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doc/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ MAINTAINERCLEANFILES = $(dist_man_MANS)
#pic1d.1: $(top_srcdir)/configure.ac $(top_srcdir)/src/arguments.cpp $(top_srcdir)/src/arguments.h
# $(HELP2MAN) --output=$@ --name='A plasma simulator.' ../src/plasma$(EXEEXT)
pic1d.1: $(top_srcdir)/configure.ac $(top_srcdir)/src/arguments.cpp $(top_srcdir)/src/arguments.h
$(HELP2MAN) --output=$@ --name='A plasma simulator.' `if [ -x ../src/plasma ]; then echo "../src/pic1d"; else echo "pic1d"; fi;`
$(HELP2MAN) --output=$@ --name='A plasma simulator.' `if [ -x ../src/pic1d ]; then echo "../src/pic1d"; else echo "pic1d"; fi;`

###
# Proper documentation
Expand Down
2 changes: 1 addition & 1 deletion doc/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -1421,7 +1421,7 @@ uninstall-man: uninstall-man1
#pic1d.1: $(top_srcdir)/configure.ac $(top_srcdir)/src/arguments.cpp $(top_srcdir)/src/arguments.h
# $(HELP2MAN) --output=$@ --name='A plasma simulator.' ../src/plasma$(EXEEXT)
pic1d.1: $(top_srcdir)/configure.ac $(top_srcdir)/src/arguments.cpp $(top_srcdir)/src/arguments.h
$(HELP2MAN) --output=$@ --name='A plasma simulator.' `if [ -x ../src/plasma ]; then echo "../src/pic1d"; else echo "pic1d"; fi;`
$(HELP2MAN) --output=$@ --name='A plasma simulator.' `if [ -x ../src/pic1d ]; then echo "../src/pic1d"; else echo "pic1d"; fi;`

# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
Expand Down

0 comments on commit 3d41cb5

Please sign in to comment.