Skip to content

Commit 852b678

Browse files
authored
Merge pull request #922 from stweil/automake
automake: Enable all warnings and fix a warning
2 parents 2a4483d + 5d60444 commit 852b678

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

autogen.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ autoheader -f || bail_out
104104
# they are copied from the system so they can be used in a distribution.
105105

106106
echo "Running automake --add-missing --copy"
107-
automake --add-missing -c -Wno-portability > /dev/null || bail_out
107+
automake --add-missing --copy --warnings=all || bail_out
108108

109109
# --- Step 5: Generate configure and include/miaconfig.h from:
110110
# . configure.ac

java/Makefile.am

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ uninstall:
6464
rm -f $(scrollview_path)/*.jar
6565
endif
6666

67-
clean :
67+
clean-local:
6868
rm -f ScrollView.jar $(SCROLLVIEW_CLASSES)
6969

7070
# all-am does nothing, to make the java part optional.

0 commit comments

Comments
 (0)