1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
From: Alessio Treglia <quadrispro@ubuntu.com>
Date: Mon, 29 Jan 2024 20:23:29 +0100
Subject: Skip debian directory.
Forwarded: cuse@users.sourceforge.net
---
Makefile.am | 2 +-
configure.ac | 1 -
2 files changed, 1 insertion(+), 2 deletions(-)
diff --git a/Makefile.am b/Makefile.am
index 1164bb2..84c968a 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,7 +1,7 @@
# require automake >= 1.5 (mandatory for option dist-bzip2)
AUTOMAKE_OPTIONS = 1.5 dist-bzip2
-SUBDIRS = doc man src debian win32 osx
+SUBDIRS = doc man src win32 osx
# to prevent compile errors on some systems
AM_CXXFLAGS = -pedantic
diff --git a/configure.ac b/configure.ac
index 209eca2..cce24a6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -154,7 +154,6 @@ AC_CONFIG_FILES([\
man/akaidump.1 \
man/akaiextract.1 \
man/wav2gig.1 \
- debian/Makefile \
osx/Makefile \
osx/libgig.xcodeproj/Makefile \
win32/Makefile \
|