Skip to content

Commit fc2d8b3

Browse files
committed
Use GNUmakefile.am not to conflict with static Makefile
1 parent 713e162 commit fc2d8b3

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.gitignore

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ VERSION
1212

1313
# Configuration stuff
1414

15-
Makefile.in
15+
GNUmakefile.in
16+
GNUmakefile
1617
/aclocal.m4
1718
/autom4te.cache/
1819
/src/config.h
@@ -35,7 +36,8 @@ Makefile.in
3536
/script/ltmain.sh
3637
/script/missing
3738
/script/test-driver
38-
/stamp-h1
39+
/src/stamp-h1
40+
/src/Makefile.in
3941
/src/Makefile
4042
libsass/*
4143

@@ -72,4 +74,4 @@ src/support/libsass.pc
7274
sassc/
7375
sass-spec/
7476

75-
installer/
77+
installer/
File renamed without changes.

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ AC_PREREQ([2.61])
66
AC_INIT([libsass], m4_esyscmd_s([./version.sh]), [[email protected]])
77
AC_CONFIG_SRCDIR([src/ast.hpp])
88
AC_CONFIG_MACRO_DIR([m4])
9-
AC_CONFIG_HEADERS([config.h])
9+
AC_CONFIG_HEADERS([src/config.h])
1010
AC_CONFIG_FILES([include/sass_version.h])
1111
AC_CONFIG_AUX_DIR([script])
1212
# These are flags passed to automake
@@ -137,5 +137,5 @@ AC_SUBST(PACKAGE_VERSION)
137137

138138
AC_MSG_NOTICE([Building libsass ($VERSION)])
139139

140-
AC_CONFIG_FILES([Makefile src/Makefile src/support/libsass.pc])
140+
AC_CONFIG_FILES([GNUmakefile src/Makefile src/support/libsass.pc])
141141
AC_OUTPUT

0 commit comments

Comments
 (0)