Merge pull request #922 from stweil/automake

automake: Enable all warnings and fix a warning
This commit is contained in:
Egor Pugin 2017-05-16 00:52:34 +03:00 committed by GitHub
commit 852b678314
2 changed files with 2 additions and 2 deletions

View File

@ -104,7 +104,7 @@ autoheader -f || bail_out
# they are copied from the system so they can be used in a distribution. # they are copied from the system so they can be used in a distribution.
echo "Running automake --add-missing --copy" echo "Running automake --add-missing --copy"
automake --add-missing -c -Wno-portability > /dev/null || bail_out automake --add-missing --copy --warnings=all || bail_out
# --- Step 5: Generate configure and include/miaconfig.h from: # --- Step 5: Generate configure and include/miaconfig.h from:
# . configure.ac # . configure.ac

View File

@ -64,7 +64,7 @@ uninstall:
rm -f $(scrollview_path)/*.jar rm -f $(scrollview_path)/*.jar
endif endif
clean : clean-local:
rm -f ScrollView.jar $(SCROLLVIEW_CLASSES) rm -f ScrollView.jar $(SCROLLVIEW_CLASSES)
# all-am does nothing, to make the java part optional. # all-am does nothing, to make the java part optional.