I understand that depending on Source I need to run autogen **Doubt:** In my slackbuild I don't use ./configure And now I'm worried if I need after running autogen also run ./configure Although everything seems to work, I would like to know if I am doing it the right way! I'm doing it below
``` SLKCFLAGS="-O2 -fPIC"
CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./autogen.sh \ --prefix=/usr \ --sysconfdir=/etc \ --libdir=/usr/lib64 \ --localstatedir=/var \ --mandir=/usr/man \ --docdir=/usr/doc/$PRGNAM-$VERSION \ --disable-static \ --build=$ARCH-slackware-linux ``` Any help or tip I am grateful!